summaryrefslogtreecommitdiff
path: root/sw/source/uibase/inc/srtdlg.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/uibase/inc/srtdlg.hxx')
-rw-r--r--sw/source/uibase/inc/srtdlg.hxx21
1 files changed, 10 insertions, 11 deletions
diff --git a/sw/source/uibase/inc/srtdlg.hxx b/sw/source/uibase/inc/srtdlg.hxx
index e47a974e40ee..e7516fb4c94a 100644
--- a/sw/source/uibase/inc/srtdlg.hxx
+++ b/sw/source/uibase/inc/srtdlg.hxx
@@ -25,7 +25,7 @@
class SwWrtShell;
-class SwSortDlg : public weld::GenericDialogController
+class SwSortDlg final : public weld::GenericDialogController
{
weld::Window* m_pParent;
std::unique_ptr<weld::Label> m_xColLbl;
@@ -60,28 +60,27 @@ class SwSortDlg : public weld::GenericDialogController
std::unique_ptr<weld::CheckButton> m_xCaseCB;
- OUString aColText;
- OUString aRowText;
- OUString aNumericText;
+ OUString m_aColText;
+ OUString m_aRowText;
+ OUString m_aNumericText;
- SwWrtShell& rSh;
+ SwWrtShell& m_rSh;
std::unique_ptr<CollatorResource> m_xColRes;
- sal_uInt16 nX;
- sal_uInt16 nY;
+ sal_uInt16 m_nX;
+ sal_uInt16 m_nY;
- void Apply();
sal_Unicode GetDelimChar() const;
- DECL_LINK(CheckHdl, weld::ToggleButton&, void);
- DECL_LINK(DelimHdl, weld::ToggleButton&, void);
+ DECL_LINK(CheckHdl, weld::Toggleable&, void);
+ DECL_LINK(DelimHdl, weld::Toggleable&, void);
DECL_LINK(LanguageListBoxHdl, weld::ComboBox&, void);
void LanguageHdl(weld::ComboBox const*);
DECL_LINK(DelimCharHdl, weld::Button&, void);
public:
SwSortDlg(weld::Window* pParent, SwWrtShell& rSh);
- virtual short run() override;
+ void Apply();
};
#endif