From 4dba6b3255539baaf8c2c5548dc4f858455e2cda Mon Sep 17 00:00:00 2001 From: Vladimir Glazounov Date: Thu, 28 Sep 2006 15:58:14 +0000 Subject: #i10000# corrected library name generation --- sc/source/ui/attrdlg/scabstdlg.cxx | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) (limited to 'sc/source/ui/attrdlg/scabstdlg.cxx') 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(SUPD) ); - aStrBuf.appendAscii( SAL_DLLEXTENSION ); + aStrBuf.appendAscii( SVLIBRARY("scui") ); if ( aDialogLibrary.is() || aDialogLibrary.load( aStrBuf.makeStringAndClear() ) ) fp = ( ScAbstractDialogFactory* (__LOADONCALLAPI*)() ) -- cgit