summaryrefslogtreecommitdiff
path: root/framework/inc/macros
diff options
context:
space:
mode:
authorKrisztian Pinter <pin.terminator@gmail.com>2013-03-08 03:07:46 +0100
committerThomas Arnhold <thomas@arnhold.org>2013-03-08 02:45:23 +0000
commitfd4380759d67bcfa582dd8880077ea8445ab8a06 (patch)
tree606dee7c3f7e0b6987976302865dfc2a4ac77570 /framework/inc/macros
parent925138ec7f0a162bd3d984935849226ad91126ca (diff)
RTL_CONSTASCII_USTRINGPARAM and ::rtl:: removals
Change-Id: Ief6418425676d6943993513c4d05c8d22e4740cf Reviewed-on: https://gerrit.libreoffice.org/2470 Tested-by: Thomas Arnhold <thomas@arnhold.org> Reviewed-by: Thomas Arnhold <thomas@arnhold.org>
Diffstat (limited to 'framework/inc/macros')
-rw-r--r--framework/inc/macros/generic.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/inc/macros/generic.hxx b/framework/inc/macros/generic.hxx
index b64289cb945d..2b0e918d048d 100644
--- a/framework/inc/macros/generic.hxx
+++ b/framework/inc/macros/generic.hxx
@@ -35,7 +35,7 @@
_________________________________________________________________________________________________________________*/
#define DECLARE_ASCII( SASCIIVALUE ) \
- ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( SASCIIVALUE ) )
+ OUString( SASCIIVALUE )
/*_________________________________________________________________________________________________________________
U2B( SUNICODEVALUE )
@@ -45,7 +45,7 @@ ________________________________________________________________________________
_________________________________________________________________________________________________________________*/
#define U2B( SUNICODEVALUE ) \
- ::rtl::OUStringToOString( SUNICODEVALUE, RTL_TEXTENCODING_UTF8 )
+ OUStringToOString( SUNICODEVALUE, RTL_TEXTENCODING_UTF8 )
#endif // #ifndef __FRAMEWORK_MACROS_GENERIC_HXX_