summaryrefslogtreecommitdiff
path: root/include/svx/sidebar/ValueSetWithTextControl.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/svx/sidebar/ValueSetWithTextControl.hxx')
-rw-r--r--include/svx/sidebar/ValueSetWithTextControl.hxx12
1 files changed, 5 insertions, 7 deletions
diff --git a/include/svx/sidebar/ValueSetWithTextControl.hxx b/include/svx/sidebar/ValueSetWithTextControl.hxx
index 5dd075a28458..e45649b17624 100644
--- a/include/svx/sidebar/ValueSetWithTextControl.hxx
+++ b/include/svx/sidebar/ValueSetWithTextControl.hxx
@@ -25,8 +25,8 @@
#include <vector>
-namespace svx::sidebar {
-
+namespace svx::sidebar
+{
/** Specialization of class <ValueSet>.
This specialization allows is a one-columned ValueSet which allow
items containing an image and a text or a text and a second text.
@@ -40,11 +40,9 @@ public:
virtual void SetDrawingArea(weld::DrawingArea* pDrawingArea) override;
- void AddItem(
- const OUString& rItemText,
- const OUString& rItemText2 );
+ void AddItem(const OUString& rItemText, const OUString& rItemText2);
- virtual void UserDraw( const UserDrawEvent& rUDEvt ) override;
+ virtual void UserDraw(const UserDrawEvent& rUDEvt) override;
private:
struct ValueSetWithTextItem
@@ -53,7 +51,7 @@ private:
OUString maItemText2;
};
- ::std::vector< ValueSetWithTextItem > maItems;
+ ::std::vector<ValueSetWithTextItem> maItems;
};
} // end of namespace svx::sidebar