diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-09-02 14:27:49 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-09-03 10:33:23 +0200 |
commit | 1e8f0940e6c6246e53550ac48eaae4f416e61777 (patch) | |
tree | 813a29491bf82b061cc574dc68b7a05f5764862a /include/svx/srchdlg.hxx | |
parent | 602c6097850d6d659b760bdb0dd83baa906d416c (diff) |
loplugin:constmethod in svx
Change-Id: I6ae7c04479e3ea8ecd7535c33224a5e7095b64bb
Reviewed-on: https://gerrit.libreoffice.org/78396
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/svx/srchdlg.hxx')
-rw-r--r-- | include/svx/srchdlg.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/svx/srchdlg.hxx b/include/svx/srchdlg.hxx index ee006adc03df..3e3a73f92815 100644 --- a/include/svx/srchdlg.hxx +++ b/include/svx/srchdlg.hxx @@ -127,7 +127,7 @@ public: void SetDocWin(vcl::Window* pDocWin); void SetSrchFlag( bool bSuccess ) { mbSuccess = bSuccess; } - bool GetSrchFlag() { return mbSuccess; } + bool GetSrchFlag() const { return mbSuccess; } void SetSaveToModule(bool b); void SetSearchLabel(const OUString& rStr); @@ -254,7 +254,7 @@ private: SVX_DLLPRIVATE void SaveToModule_Impl(); SVX_DLLPRIVATE void ApplyTransliterationFlags_Impl( TransliterationFlags nSettings ); - SVX_DLLPRIVATE bool IsOtherOptionsExpanded(); + SVX_DLLPRIVATE bool IsOtherOptionsExpanded() const; SVX_DLLPRIVATE short executeSubDialog(VclAbstractDialog * dialog); }; |