summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorHerbert Dürr <hdu@apache.org>2011-09-27 09:55:15 +0000
committerHerbert Dürr <hdu@apache.org>2011-09-27 09:55:15 +0000
commitf4b840dad66b6390f6e50afe4aa563a02e739903 (patch)
tree64a8c11b4a98cc8dc474acd416a0812a70115213 /vcl
parentf9a877fa1e62ce1aec28319614534ef06841ada7 (diff)
VC++ has problems to stringify empty macros so avoid it altogether
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/app/unohelp.cxx5
1 files changed, 1 insertions, 4 deletions
diff --git a/vcl/source/app/unohelp.cxx b/vcl/source/app/unohelp.cxx
index e402d4ec8e62..d1ce80a46310 100644
--- a/vcl/source/app/unohelp.cxx
+++ b/vcl/source/app/unohelp.cxx
@@ -51,12 +51,9 @@
#include <com/sun/star/accessibility/AccessibleStateType.hpp>
#include <com/sun/star/registry/XImplementationRegistration.hpp>
-
using namespace ::com::sun::star;
using namespace ::rtl;
-#define STRING( x ) #x ""
-
struct VCLRegServiceInfo
{
const sal_Char* pLibName;
@@ -186,7 +183,7 @@ uno::Reference < i18n::XCollator > vcl::unohelper::CreateCollator()
::rtl::OUString vcl::unohelper::CreateLibraryName( const sal_Char* pModName, sal_Bool bSUPD )
{
// create variable library name suffixes
- OUString aDLLSuffix = OUString::createFromAscii( STRING(DLLPOSTFIX) );
+ OUString aDLLSuffix; //= OUString::createFromAscii( STRING(DLLPOSTFIX) );
OUString aLibName;