summaryrefslogtreecommitdiff
path: root/svtools/source
diff options
context:
space:
mode:
Diffstat (limited to 'svtools/source')
-rw-r--r--svtools/source/filter/filter.cxx30
1 files changed, 0 insertions, 30 deletions
diff --git a/svtools/source/filter/filter.cxx b/svtools/source/filter/filter.cxx
index ee1f3292b1fc..dce88f41558a 100644
--- a/svtools/source/filter/filter.cxx
+++ b/svtools/source/filter/filter.cxx
@@ -26,7 +26,6 @@
*
************************************************************************/
-
#include <osl/mutex.hxx>
#include <comphelper/processfactory.hxx>
#include <comphelper/string.hxx>
@@ -77,8 +76,6 @@
#define IMPORT_FUNCTION_NAME "GraphicImport"
#define EXPORT_FUNCTION_NAME "GraphicExport"
-#define IMPDLG_FUNCTION_NAME "DoImportDialog"
-#define EXPDLG_FUNCTION_NAME "DoExportDialog"
// -----------
// - statics -
@@ -926,9 +923,6 @@ struct ImpFilterLibCacheEntry
int operator==( const String& rFiltername ) const { return maFiltername == rFiltername; }
PFilterCall GetImportFunction();
- PFilterDlgCall GetImportDlgFunction();
- PFilterCall GetExportFunction() { return (PFilterCall) maLibrary.getFunctionSymbol( UniString::CreateFromAscii( EXPORT_FUNCTION_NAME ) ); }
- PFilterDlgCall GetExportDlgFunction() { return (PFilterDlgCall) maLibrary.getFunctionSymbol( UniString::CreateFromAscii( EXPDLG_FUNCTION_NAME ) ); }
};
// ------------------------------------------------------------------------
@@ -954,14 +948,6 @@ PFilterCall ImpFilterLibCacheEntry::GetImportFunction()
// ------------------------------------------------------------------------
-PFilterDlgCall ImpFilterLibCacheEntry::GetImportDlgFunction()
-{
- if( !mpfnImportDlg )
- mpfnImportDlg = (PFilterDlgCall)maLibrary.getFunctionSymbol( UniString::CreateFromAscii( IMPDLG_FUNCTION_NAME ) );
-
- return mpfnImportDlg;
-}
-
// ---------------------
// - ImpFilterLibCache -
// ---------------------
@@ -2094,22 +2080,6 @@ sal_Bool GraphicFilter::Setup( sal_uInt16 )
return sal_False;
}
-/* ------------------------------------------------------------------------
- No Import filter has a dialog, so
- the following two methods are obsolete */
-
-sal_Bool GraphicFilter::HasImportDialog( sal_uInt16 )
-{
- return sal_True;
-}
-
-// ------------------------------------------------------------------------
-
-sal_Bool GraphicFilter::DoImportDialog( Window*, sal_uInt16 )
-{
- return sal_True;
-}
-
// ------------------------------------------------------------------------
sal_Bool GraphicFilter::HasExportDialog( sal_uInt16 nFormat )