diff options
author | Oliver Bolte <obo@openoffice.org> | 2008-02-25 16:29:48 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2008-02-25 16:29:48 +0000 |
commit | 83daac08d790660f65e807c5d4c4aead403fe4b1 (patch) | |
tree | 9712898a2eaa5e67cf125d39f9b0bc94ee0c3ed8 | |
parent | be77732bd1e81cd1f38f2bb78d9d23b1a20b7e3a (diff) |
INTEGRATION: CWS supdremove02 (1.4.224); FILE MERGED
2008/01/25 16:02:16 rt 1.4.224.1: #i85482# Remove UPD from library names.
-rw-r--r-- | comphelper/inc/comphelper/componentfactory.hxx | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/comphelper/inc/comphelper/componentfactory.hxx b/comphelper/inc/comphelper/componentfactory.hxx index 54005e6080f2..94dd97b011fb 100644 --- a/comphelper/inc/comphelper/componentfactory.hxx +++ b/comphelper/inc/comphelper/componentfactory.hxx @@ -4,9 +4,9 @@ * * $RCSfile: componentfactory.hxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: rt $ $Date: 2005-09-08 02:28:31 $ + * last change: $Author: obo $ $Date: 2008-02-25 17:29:48 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -53,14 +53,12 @@ #endif -#define LLCF_DOSTRING( x ) #x -#define LLCF_STRING( x ) LLCF_DOSTRING( x ) #ifdef UNX -// "libNAME603xy.so" (__DLLEXTENSION == "xy.so") -#define LLCF_LIBNAME( name ) "lib" name LLCF_STRING( SUPD ) __DLLEXTENSION +// "libNAMExy.so" (__DLLEXTENSION == "xy.so") +#define LLCF_LIBNAME( name ) "lib" name __DLLEXTENSION #else -// "NAME603xy.dll" (__DLLEXTENSION == "xy") -#define LLCF_LIBNAME( name ) name LLCF_STRING( SUPD ) __DLLEXTENSION ".dll" +// "NAMExy.dll" (__DLLEXTENSION == "xy") +#define LLCF_LIBNAME( name ) name __DLLEXTENSION ".dll" #endif |