summaryrefslogtreecommitdiff
path: root/fpicker/source
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2008-04-03 15:44:53 +0000
committerKurt Zenker <kz@openoffice.org>2008-04-03 15:44:53 +0000
commit9d4c939197d528674279e00db235f2870c9c8663 (patch)
tree174bd1bf0a651b8094156870f0ac80522a9f0662 /fpicker/source
parent897cb075d06fad86ce1b8c9842b5cb9fafa0195d (diff)
INTEGRATION: CWS vcl87 (1.7.88); FILE MERGED
2008/02/26 16:54:32 pl 1.7.88.1: #i86358# remove unused code
Diffstat (limited to 'fpicker/source')
-rw-r--r--fpicker/source/office/iodlgimp.cxx23
1 files changed, 4 insertions, 19 deletions
diff --git a/fpicker/source/office/iodlgimp.cxx b/fpicker/source/office/iodlgimp.cxx
index 11e65a035f87..382c7186c094 100644
--- a/fpicker/source/office/iodlgimp.cxx
+++ b/fpicker/source/office/iodlgimp.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: iodlgimp.cxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: rt $ $Date: 2007-04-26 08:26:24 $
+ * last change: $Author: kz $ $Date: 2008-04-03 16:44:53 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -514,7 +514,7 @@ void SvtExpFileDlg_Impl::SetStandardDir( const String& _rDir )
}
//*****************************************************************************
-
+#if OSL_DEBUG_LEVEL > 0
//-----------------------------------------------------------------------------
namespace {
String lcl_DecoratedFilter( const String& _rOriginalFilter )
@@ -525,7 +525,7 @@ namespace {
return aDecoratedFilter;
}
}
-
+#endif
//-----------------------------------------------------------------------------
void SvtExpFileDlg_Impl::ClearFilterList( )
@@ -589,18 +589,3 @@ void SvtExpFileDlg_Impl::CreateFilterListControl( Window* _pParent, const ResId&
_pLbFilter->SetDropDownLineCount( 10 );
}
}
-
-//-----------------------------------------------------------------------------
-
-SvtFileDialogFilter_Impl* SvtExpFileDlg_Impl::FindFilter( const String& _rFilterName )
-{
- // simply loop through the filter list and compare names ...
- USHORT nPos = _pFilter->Count();
- while ( nPos-- )
- {
- SvtFileDialogFilter_Impl* pFilter = _pFilter->GetObject( nPos );
- if ( pFilter->GetName() == _rFilterName )
- return pFilter;
- }
- return NULL;
-}