diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-11-28 13:19:15 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-12-02 08:02:17 +0100 |
commit | a846982f9e6c780ba61525fd8dfc30e429ff52ae (patch) | |
tree | 8cc346f11fd3c933c43b2d499f0768ce54ce921d /fpicker | |
parent | c91feb2f7e9928ac365f5f51429d9c20bef378a0 (diff) |
-Werror,-Wunused-private-field
Change-Id: Icf15313f5bcacbe9c7efa0b4161929dbb3e39c1e
Diffstat (limited to 'fpicker')
-rw-r--r-- | fpicker/source/win32/filepicker/VistaFilePickerImpl.cxx | 1 | ||||
-rw-r--r-- | fpicker/source/win32/filepicker/VistaFilePickerImpl.hxx | 12 |
2 files changed, 0 insertions, 13 deletions
diff --git a/fpicker/source/win32/filepicker/VistaFilePickerImpl.cxx b/fpicker/source/win32/filepicker/VistaFilePickerImpl.cxx index cb9807168bb2..7194bc9ed6bb 100644 --- a/fpicker/source/win32/filepicker/VistaFilePickerImpl.cxx +++ b/fpicker/source/win32/filepicker/VistaFilePickerImpl.cxx @@ -149,7 +149,6 @@ VistaFilePickerImpl::VistaFilePickerImpl() , m_iDialogSave () , m_hLastResult () , m_lFilters () - , m_lLastFiles () , m_iEventHandler(new VistaFilePickerEventHandler(this)) , m_bInExecute (sal_False) , m_bWasExecuted (sal_False) diff --git a/fpicker/source/win32/filepicker/VistaFilePickerImpl.hxx b/fpicker/source/win32/filepicker/VistaFilePickerImpl.hxx index 47e1be65a5e8..64fbd5b2d027 100644 --- a/fpicker/source/win32/filepicker/VistaFilePickerImpl.hxx +++ b/fpicker/source/win32/filepicker/VistaFilePickerImpl.hxx @@ -45,9 +45,6 @@ #include "IVistaFilePickerInternalNotify.hxx" #include "../misc/resourceprovider.hxx" -#include <com/sun/star/uno/Sequence.hxx> - -#include <comphelper/sequenceashashmap.hxx> #include <cppuhelper/interfacecontainer.h> #include <cppuhelper/basemutex.hxx> #include <osl/thread.hxx> @@ -302,15 +299,6 @@ class VistaFilePickerImpl : private ::cppu::BaseMutex CFilterContainer m_lFilters; - /** cache last selected list of files - * Because those list must be retrieved directly after closing the dialog - * (and only in case it was finished successfully) we cache it internally. - * Because the outside provided UNO API decouple showing the dialog - * and asking for results .-) - */ - css::uno::Sequence< OUString > m_lLastFiles; - - /** help us to handle dialog events and provide them to interested office * listener. */ |