summaryrefslogtreecommitdiff
path: root/sfx2/source/dialog
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2012-04-12 00:40:08 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2012-04-12 00:45:21 +0900
commit08908961901ee0a7db4b6ee6005f1591d2d56e04 (patch)
treeee4d19aac48e8b4060ff2537dc3d36e29b0f2c32 /sfx2/source/dialog
parent25c70a72327116d257e41bcc67a3992a07bf7863 (diff)
removed dead code
Diffstat (limited to 'sfx2/source/dialog')
-rw-r--r--sfx2/source/dialog/filtergrouping.cxx41
1 files changed, 0 insertions, 41 deletions
diff --git a/sfx2/source/dialog/filtergrouping.cxx b/sfx2/source/dialog/filtergrouping.cxx
index bf0473255742..25f7a39051a5 100644
--- a/sfx2/source/dialog/filtergrouping.cxx
+++ b/sfx2/source/dialog/filtergrouping.cxx
@@ -54,9 +54,6 @@ namespace sfx2
{
//........................................................................
-//#define DISABLE_GROUPING_AND_CLASSIFYING
- // not using the functionallity herein, yet
-
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::ui::dialogs;
using namespace ::com::sun::star::lang;
@@ -808,34 +805,6 @@ namespace sfx2
}
}
-#ifdef DISABLE_GROUPING_AND_CLASSIFYING
- //--------------------------------------------------------------------
- void lcl_EnsureAllFilesEntry( TSortedFilterList& _rFilterMatcher, const Reference< XFilterManager >& _rxFilterManager, ::rtl::OUString& _rFirstNonEmpty )
- {
- // ===============================================================
- String sAllFilterName;
- if ( !lcl_hasAllFilesFilter( _rFilterMatcher, sAllFilterName ) )
- {
- try
- {
- _rxFilterManager->appendFilter( sAllFilterName, DEFINE_CONST_UNICODE( FILEDIALOG_FILTER_ALL ) );
- _rFirstNonEmpty = sAllFilterName;
- }
- catch( const IllegalArgumentException& )
- {
-#ifdef DBG_UTIL
- rtl::OStringBuffer aMsg(RTL_CONSTASCII_STRINGPARAM(
- "sfx2::lcl_EnsureAllFilesEntry: could not append Filter"));
- aMsg.append(rtl::OUStringToOString(sAllFilterName,
- RTL_TEXTENCODING_UTF8));
- OSL_FAIL( aMsg.getStr() );
-#endif
- }
- }
-
- }
-#endif
-
// =======================================================================
// = filling an XFilterManager
// =======================================================================
@@ -1180,15 +1149,6 @@ namespace sfx2
if ( !_rxFilterManager.is() )
return;
-#ifdef DISABLE_GROUPING_AND_CLASSIFYING
- // ===============================================================
- // ensure that there's an entry "all" (with wildcard *.*)
- lcl_EnsureAllFilesEntry( _rFilterMatcher, _rxFilterManager, _rFirstNonEmpty );
-
- // ===============================================================
- appendFilters( _rFilterMatcher, _rxFilterManager, _rFirstNonEmpty );
-#else
-
// ===============================================================
// group and classify the filters
GroupedFilterList aAllFilters;
@@ -1221,7 +1181,6 @@ namespace sfx2
aAllFilters.end(),
AppendFilterGroup( _rxFilterManager, &_rFileDlgImpl ) );
}
-#endif
}
::rtl::OUString addExtension( const ::rtl::OUString& _rDisplayText,