diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2006-09-28 15:58:14 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2006-09-28 15:58:14 +0000 |
commit | 4dba6b3255539baaf8c2c5548dc4f858455e2cda (patch) | |
tree | 65b4af3b9d9d624acd74bfc39125a6ea3a0a7160 /sc/source/ui/attrdlg/scabstdlg.cxx | |
parent | 71e2f5618efef7294fbac62fcb55bfb239e46ab8 (diff) |
#i10000# corrected library name generation
Diffstat (limited to 'sc/source/ui/attrdlg/scabstdlg.cxx')
-rw-r--r-- | sc/source/ui/attrdlg/scabstdlg.cxx | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/sc/source/ui/attrdlg/scabstdlg.cxx b/sc/source/ui/attrdlg/scabstdlg.cxx index 3c1e36e8da80..0351e5e543d1 100644 --- a/sc/source/ui/attrdlg/scabstdlg.cxx +++ b/sc/source/ui/attrdlg/scabstdlg.cxx @@ -4,9 +4,9 @@ * * $RCSfile: scabstdlg.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: vg $ $Date: 2006-09-27 09:48:41 $ + * last change: $Author: vg $ $Date: 2006-09-28 16:58:14 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -51,12 +51,7 @@ ScAbstractDialogFactory* ScAbstractDialogFactory::Create() static ::osl::Module aDialogLibrary; OUStringBuffer aStrBuf; -#ifdef SAL_DLLPREFIX - aStrBuf.appendAscii( SAL_DLLPREFIX ); -#endif - aStrBuf.appendAscii( "scui" ); - aStrBuf.append( static_cast<sal_Int32>(SUPD) ); - aStrBuf.appendAscii( SAL_DLLEXTENSION ); + aStrBuf.appendAscii( SVLIBRARY("scui") ); if ( aDialogLibrary.is() || aDialogLibrary.load( aStrBuf.makeStringAndClear() ) ) fp = ( ScAbstractDialogFactory* (__LOADONCALLAPI*)() ) |