summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/browser/genericcontroller.cxx
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@suse.cz>2013-04-07 12:06:47 +0200
committerLuboš Luňák <l.lunak@suse.cz>2013-04-07 14:23:11 +0200
commit1946794ae09ba732022fe6a74ea45e304ab70b84 (patch)
treee32bd7ba61fa021ecc7f8c85959df8ca837d6e81 /dbaccess/source/ui/browser/genericcontroller.cxx
parent5b08c6e7a21dda94d5b755eea0b1ed1e9c199bec (diff)
mass removal of rtl:: prefixes for O(U)String*
Modules sal, salhelper, cppu, cppuhelper, codemaker (selectively) and odk have kept them, in order not to break external API (the automatic using declaration is LO-internal). Change-Id: I588fc9e0c45b914f824f91c0376980621d730f09
Diffstat (limited to 'dbaccess/source/ui/browser/genericcontroller.cxx')
-rw-r--r--dbaccess/source/ui/browser/genericcontroller.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/dbaccess/source/ui/browser/genericcontroller.cxx b/dbaccess/source/ui/browser/genericcontroller.cxx
index cf92e7fc68fd..52de673fb1f3 100644
--- a/dbaccess/source/ui/browser/genericcontroller.cxx
+++ b/dbaccess/source/ui/browser/genericcontroller.cxx
@@ -602,9 +602,9 @@ void OGenericUnoController::InvalidateFeature_Impl()
#if OSL_DEBUG_LEVEL > 0
if ( m_aSupportedFeatures.end() == aFeaturePos )
{
- ::rtl::OString sMessage( "OGenericUnoController::InvalidateFeature_Impl: feature id " );
- sMessage += ::rtl::OString::valueOf( aNextFeature.nId );
- sMessage += ::rtl::OString( " has been invalidated, but is not supported!" );
+ OString sMessage( "OGenericUnoController::InvalidateFeature_Impl: feature id " );
+ sMessage += OString::valueOf( aNextFeature.nId );
+ sMessage += OString( " has been invalidated, but is not supported!" );
OSL_FAIL( sMessage.getStr() );
}
#endif
@@ -774,9 +774,9 @@ void OGenericUnoController::dispatch(const URL& _aURL, const Sequence< PropertyV
// #i52602#
#ifdef TIMELOG
- ::rtl::OString sLog( "OGenericUnoController::dispatch( '" );
- sLog += ::rtl::OString( _aURL.Main.getStr(), _aURL.Main.getLength(), osl_getThreadTextEncoding() );
- sLog += ::rtl::OString( "' )" );
+ OString sLog( "OGenericUnoController::dispatch( '" );
+ sLog += OString( _aURL.Main.getStr(), _aURL.Main.getLength(), osl_getThreadTextEncoding() );
+ sLog += OString( "' )" );
RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "dbaccess", "frank.schoenheit@sun.com", sLog.getStr() );
#endif
@@ -1325,7 +1325,7 @@ void OGenericUnoController::openHelpAgent(OUString const& _suHelpStringURL )
openHelpAgent( aURL );
}
-void OGenericUnoController::openHelpAgent(const rtl::OString& _sHelpId)
+void OGenericUnoController::openHelpAgent(const OString& _sHelpId)
{
openHelpAgent( createHelpAgentURL( lcl_getModuleHelpModuleName( getFrame() ), _sHelpId ) );
}