summaryrefslogtreecommitdiff
path: root/sc/source/ui/attrdlg/scabstdlg.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/ui/attrdlg/scabstdlg.cxx')
-rw-r--r--sc/source/ui/attrdlg/scabstdlg.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/sc/source/ui/attrdlg/scabstdlg.cxx b/sc/source/ui/attrdlg/scabstdlg.cxx
index 910b6c50d9c4..10be2588d8cd 100644
--- a/sc/source/ui/attrdlg/scabstdlg.cxx
+++ b/sc/source/ui/attrdlg/scabstdlg.cxx
@@ -23,7 +23,6 @@
#include <osl/module.hxx>
#include <rtl/ustrbuf.hxx>
-using ::rtl::OUStringBuffer;
typedef ScAbstractDialogFactory* (SAL_CALL *ScFuncPtrCreateDialogFactory)();
@@ -49,7 +48,7 @@ ScAbstractDialogFactory* ScAbstractDialogFactory::Create()
if ( aDialogLibrary.is() || aDialogLibrary.loadRelative( &thisModule, aStrBuf.makeStringAndClear(),
SAL_LOADMODULE_GLOBAL | SAL_LOADMODULE_LAZY ) )
fp = ( ScAbstractDialogFactory* (SAL_CALL*)() )
- aDialogLibrary.getFunctionSymbol( ::rtl::OUString("CreateDialogFactory") );
+ aDialogLibrary.getFunctionSymbol( OUString("CreateDialogFactory") );
if ( fp )
return fp();
return 0;