diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2019-01-22 09:19:57 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2019-01-22 09:19:57 +0100 |
commit | eaa026a063a950d3682a8f88272d1f9f2cc1f004 (patch) | |
tree | 3d8f00e86736f81815cf984038851f728baa57c8 /vcl | |
parent | adc7efcd6508308cffd6b5d5932ed97c52edcb1a (diff) |
loplugin:staticmethods
Change-Id: I1f9ebbd77a8d7cf18facfe1783507fd9ba3b566c
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/unx/kde5/KDE5FilePicker.hxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/vcl/unx/kde5/KDE5FilePicker.hxx b/vcl/unx/kde5/KDE5FilePicker.hxx index b3293b32a1b7..13e487366d52 100644 --- a/vcl/unx/kde5/KDE5FilePicker.hxx +++ b/vcl/unx/kde5/KDE5FilePicker.hxx @@ -159,8 +159,9 @@ public: private: //add a custom control widget to the file dialog void addCustomControl(sal_Int16 controlId); - void handleSetListValue(QComboBox* pQComboBox, sal_Int16 nAction, const css::uno::Any& rValue); - css::uno::Any handleGetListValue(QComboBox* pQComboBox, sal_Int16 nAction); + static void handleSetListValue(QComboBox* pQComboBox, sal_Int16 nAction, + const css::uno::Any& rValue); + static css::uno::Any handleGetListValue(QComboBox* pQComboBox, sal_Int16 nAction); OUString implGetDirectory(); // emit XFilePickerListener controlStateChanged event |