summaryrefslogtreecommitdiff
path: root/comphelper/source/misc/logging.cxx
diff options
context:
space:
mode:
authorChr. Rossmanith <ChrRossmanith@gmx.de>2013-01-28 10:16:20 +0100
committerChr. Rossmanith <ChrRossmanith@gmx.de>2013-01-28 13:15:21 +0100
commit69bb1336bfbbc9fbdc08027490b0174c904eee0f (patch)
treebb33f08ec0f112d1a6efd9a9911ea91c85e40ad5 /comphelper/source/misc/logging.cxx
parent179c9c4f78c6cd7d0556cf85b36c586323331c8d (diff)
RTL_CONSTASCII_(U)STRINGPARAM removed in comphelper
Change-Id: I36bb19c123c1de54e04ba2e6c30b1cb0f7353047
Diffstat (limited to 'comphelper/source/misc/logging.cxx')
-rw-r--r--comphelper/source/misc/logging.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/comphelper/source/misc/logging.cxx b/comphelper/source/misc/logging.cxx
index d5c4656c0db0..9d23deeda6db 100644
--- a/comphelper/source/misc/logging.cxx
+++ b/comphelper/source/misc/logging.cxx
@@ -150,12 +150,12 @@ namespace comphelper
const OptionalString& _rArgument5, const OptionalString& _rArgument6 ) const
{
// (if ::rtl::OUString had an indexOfAscii, we could save those ugly statics ...)
- static ::rtl::OUString sPH1( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "$1$" ) ) );
- static ::rtl::OUString sPH2( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "$2$" ) ) );
- static ::rtl::OUString sPH3( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "$3$" ) ) );
- static ::rtl::OUString sPH4( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "$4$" ) ) );
- static ::rtl::OUString sPH5( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "$5$" ) ) );
- static ::rtl::OUString sPH6( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "$6$" ) ) );
+ static ::rtl::OUString sPH1( "$1$" );
+ static ::rtl::OUString sPH2( "$2$" );
+ static ::rtl::OUString sPH3( "$3$" );
+ static ::rtl::OUString sPH4( "$4$" );
+ static ::rtl::OUString sPH5( "$5$" );
+ static ::rtl::OUString sPH6( "$6$" );
::rtl::OUString sMessage( _rMessage );
if ( !!_rArgument1 )