summaryrefslogtreecommitdiff
path: root/svl/source/filepicker/pickerhistory.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svl/source/filepicker/pickerhistory.cxx')
-rw-r--r--svl/source/filepicker/pickerhistory.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svl/source/filepicker/pickerhistory.cxx b/svl/source/filepicker/pickerhistory.cxx
index 2b7724785661..84e6da9968e6 100644
--- a/svl/source/filepicker/pickerhistory.cxx
+++ b/svl/source/filepicker/pickerhistory.cxx
@@ -30,21 +30,21 @@ namespace svt
typedef ::com::sun::star::uno::WeakReference< XInterface > InterfaceAdapter;
typedef ::std::vector< InterfaceAdapter > InterfaceArray;
- // ----------------------------------------------------------------
+
InterfaceArray& getFolderPickerHistory()
{
static InterfaceArray s_aHistory;
return s_aHistory;
}
- // ----------------------------------------------------------------
+
InterfaceArray& getFilePickerHistory()
{
static InterfaceArray s_aHistory;
return s_aHistory;
}
- // ----------------------------------------------------------------
+
void implPushBackPicker( InterfaceArray& _rHistory, const Reference< XInterface >& _rxPicker )
{
if ( !_rxPicker.is() )