summaryrefslogtreecommitdiff
path: root/include/sfx2/newstyle.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/sfx2/newstyle.hxx')
-rw-r--r--include/sfx2/newstyle.hxx7
1 files changed, 5 insertions, 2 deletions
diff --git a/include/sfx2/newstyle.hxx b/include/sfx2/newstyle.hxx
index 28cfec9e8e55..23dbfa61210d 100644
--- a/include/sfx2/newstyle.hxx
+++ b/include/sfx2/newstyle.hxx
@@ -28,7 +28,7 @@
class SFX2_DLLPUBLIC SfxNewStyleDlg final : public weld::GenericDialogController
{
private:
- SfxStyleSheetBasePool& m_rPool;
+ SfxStyleSheetBasePool& m_rPool;
SfxStyleFamily m_eSearchFamily;
std::unique_ptr<weld::EntryTreeView> m_xColBox;
@@ -44,7 +44,10 @@ public:
SfxNewStyleDlg(weld::Widget* pParent, SfxStyleSheetBasePool& rPool, SfxStyleFamily eFam);
virtual ~SfxNewStyleDlg() override;
- OUString GetName() const { return comphelper::string::stripStart(m_xColBox->get_active_text(), ' '); }
+ OUString GetName() const
+ {
+ return comphelper::string::stripStart(m_xColBox->get_active_text(), ' ');
+ }
};
#endif