summaryrefslogtreecommitdiff
path: root/extensions/source
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-10-23 12:06:00 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-10-24 14:43:34 +0200
commit6f50961e69406a17d6ec998956a6b33208b1001b (patch)
tree413c83df969e73c5cba1e11ef3740afc748ee1f5 /extensions/source
parent4e729de73f2947155248f8df5897380611b87917 (diff)
remove more rtl::OUString and OString prefixes
which seem to have snuck back in since the great rounds of removals. Change-Id: I85f7f5f4801c0b48dae8b50f51f83595b286d6a1 Reviewed-on: https://gerrit.libreoffice.org/62229 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'extensions/source')
-rw-r--r--extensions/source/bibliography/bibprop.hxx20
-rw-r--r--extensions/source/logging/loggerconfig.cxx10
2 files changed, 15 insertions, 15 deletions
diff --git a/extensions/source/bibliography/bibprop.hxx b/extensions/source/bibliography/bibprop.hxx
index 21261dc5ad76..2df398419f78 100644
--- a/extensions/source/bibliography/bibprop.hxx
+++ b/extensions/source/bibliography/bibprop.hxx
@@ -19,16 +19,16 @@
#ifndef INCLUDED_EXTENSIONS_SOURCE_BIBLIOGRAPHY_BIBPROP_HXX
#define INCLUDED_EXTENSIONS_SOURCE_BIBLIOGRAPHY_BIBPROP_HXX
-extern rtl::OUString FM_PROP_LABEL;
-extern rtl::OUString FM_PROP_NAME;
-extern rtl::OUString FM_PROP_CONTROLSOURCE;
-extern rtl::OUString FM_PROP_FORMATKEY;
-extern rtl::OUString FM_PROP_VALUE;
-extern rtl::OUString FM_PROP_EDITMODE;
-extern rtl::OUString FM_PROP_DATASOURCE;
-extern rtl::OUString FM_PROP_CURSORSOURCE;
-extern rtl::OUString FM_PROP_CURSORSOURCETYPE;
-extern rtl::OUString FM_PROP_TEXT;
+extern OUString FM_PROP_LABEL;
+extern OUString FM_PROP_NAME;
+extern OUString FM_PROP_CONTROLSOURCE;
+extern OUString FM_PROP_FORMATKEY;
+extern OUString FM_PROP_VALUE;
+extern OUString FM_PROP_EDITMODE;
+extern OUString FM_PROP_DATASOURCE;
+extern OUString FM_PROP_CURSORSOURCE;
+extern OUString FM_PROP_CURSORSOURCETYPE;
+extern OUString FM_PROP_TEXT;
#endif
diff --git a/extensions/source/logging/loggerconfig.cxx b/extensions/source/logging/loggerconfig.cxx
index 00533977a45e..fe4e5b315446 100644
--- a/extensions/source/logging/loggerconfig.cxx
+++ b/extensions/source/logging/loggerconfig.cxx
@@ -99,27 +99,27 @@ namespace logging
static_cast<int>(aDateTime.Year),
static_cast<int>(aDateTime.Month),
static_cast<int>(aDateTime.Day) );
- rtl::OUString sDate = rtl::OUString::createFromAscii( buffer );
+ OUString sDate = OUString::createFromAscii( buffer );
snprintf( buffer, buffer_size, "%02i-%02i-%02i.%03i",
static_cast<int>(aDateTime.Hours),
static_cast<int>(aDateTime.Minutes),
static_cast<int>(aDateTime.Seconds),
::sal::static_int_cast< sal_Int16 >( aDateTime.NanoSeconds / 10000000 ) );
- rtl::OUString sTime = rtl::OUString::createFromAscii( buffer );
+ OUString sTime = OUString::createFromAscii( buffer );
- rtl::OUStringBuffer aBuff;
+ OUStringBuffer aBuff;
aBuff.append( sDate );
aBuff.append( '.' );
aBuff.append( sTime );
- rtl::OUString sDateTime = aBuff.makeStringAndClear();
+ OUString sDateTime = aBuff.makeStringAndClear();
oslProcessIdentifier aProcessId = 0;
oslProcessInfo info;
info.Size = sizeof (oslProcessInfo);
if ( osl_getProcessInfo ( nullptr, osl_Process_IDENTIFIER, &info ) == osl_Process_E_None)
aProcessId = info.Ident;
- rtl::OUString aPID = OUString::number( aProcessId );
+ OUString aPID = OUString::number( aProcessId );
Variable const aVariables[] =
{