diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-02-22 15:54:49 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-02-23 11:54:54 +0100 |
commit | cd383000f84b8b75ffe15d1cd1bb8d5a14a71685 (patch) | |
tree | 01387d2f0750baae62139a6ee572c73d122f8714 /fpicker | |
parent | a25ee52f6861796853cb3ebf12e49834222bcba0 (diff) |
loplugin:unusedfields in forms..fpicker
Change-Id: Ifd3afbf276100e3cef802bbcc0792b43a9cd84f8
Reviewed-on: https://gerrit.libreoffice.org/68228
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'fpicker')
-rw-r--r-- | fpicker/source/office/OfficeFolderPicker.cxx | 3 | ||||
-rw-r--r-- | fpicker/source/office/OfficeFolderPicker.hxx | 3 |
2 files changed, 1 insertions, 5 deletions
diff --git a/fpicker/source/office/OfficeFolderPicker.cxx b/fpicker/source/office/OfficeFolderPicker.cxx index b95f0f972980..2c049ed605f0 100644 --- a/fpicker/source/office/OfficeFolderPicker.cxx +++ b/fpicker/source/office/OfficeFolderPicker.cxx @@ -141,9 +141,8 @@ OUString SAL_CALL SvtFolderPicker::getDirectory() return OUString(); } -void SAL_CALL SvtFolderPicker::setDescription( const OUString& aDescription ) +void SAL_CALL SvtFolderPicker::setDescription( const OUString& ) { - m_aDescription = aDescription; } void SvtFolderPicker::cancel() diff --git a/fpicker/source/office/OfficeFolderPicker.hxx b/fpicker/source/office/OfficeFolderPicker.hxx index 7a44881c05f8..790dff6e9048 100644 --- a/fpicker/source/office/OfficeFolderPicker.hxx +++ b/fpicker/source/office/OfficeFolderPicker.hxx @@ -40,8 +40,6 @@ typedef class SvtFolderPicker: public SvtFolderPicker_Base { private: - OUString m_aDescription; - css::uno::Reference< css::ui::dialogs::XDialogClosedListener > m_xListener; @@ -55,7 +53,6 @@ public: // XFolderPicker2 functions - virtual void SAL_CALL setDisplayDirectory( const OUString& aDirectory ) override; virtual OUString SAL_CALL getDisplayDirectory() override; virtual OUString SAL_CALL getDirectory() override; |