diff options
author | Jelle van der Waa <jelle@vdwaa.nl> | 2013-07-14 11:20:36 +0200 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2013-07-17 09:19:38 +0000 |
commit | e179af1576a7763f3aeb112a41a640057d02c4f0 (patch) | |
tree | 4b1b6246f1aa508c8d3ca8971d711c7d8020ae34 /svl/source/filepicker | |
parent | 4e0656ac0bc5be3306ad016a1a494577ad2ef8b8 (diff) |
fdo#62475 removed pointless comments
Change-Id: Id9d579960a9b641b7b2cdf05eabea8bfbfc06bd6
Reviewed-on: https://gerrit.libreoffice.org/4901
Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com>
Tested-by: Norbert Thiebaud <nthiebaud@gmail.com>
Diffstat (limited to 'svl/source/filepicker')
-rw-r--r-- | svl/source/filepicker/pickerhistory.cxx | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/svl/source/filepicker/pickerhistory.cxx b/svl/source/filepicker/pickerhistory.cxx index 5bca8b2a0ffe..2b7724785661 100644 --- a/svl/source/filepicker/pickerhistory.cxx +++ b/svl/source/filepicker/pickerhistory.cxx @@ -21,10 +21,8 @@ #include <cppuhelper/weakref.hxx> #include <vector> -//......................................................................... namespace svt { -//......................................................................... using namespace ::com::sun::star::uno; namespace @@ -52,7 +50,6 @@ namespace svt if ( !_rxPicker.is() ) return; - //============================================================= // first, check which of the objects we hold in s_aHistory can be removed { InterfaceArray aCleanedHistory; @@ -73,26 +70,21 @@ namespace svt _rHistory.swap( aCleanedHistory ); } - //============================================================= // then push_back the picker _rHistory.push_back( InterfaceAdapter( _rxPicker ) ); } } - //--------------------------------------------------------------------- void addFolderPicker( const Reference< XInterface >& _rxPicker ) { implPushBackPicker( getFolderPickerHistory(), _rxPicker ); } - //--------------------------------------------------------------------- void addFilePicker( const Reference< XInterface >& _rxPicker ) { implPushBackPicker( getFilePickerHistory(), _rxPicker ); } -//......................................................................... } // namespace svt -//......................................................................... /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |