summaryrefslogtreecommitdiffstats
path: root/tubes/source/contacts.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 /tubes/source/contacts.cxx
parentTypo in comment in resmgr.hxx (diff)
downloadcore-1946794ae09ba732022fe6a74ea45e304ab70b84.tar.gz
core-1946794ae09ba732022fe6a74ea45e304ab70b84.zip
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 'tubes/source/contacts.cxx')
-rw-r--r--tubes/source/contacts.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/tubes/source/contacts.cxx b/tubes/source/contacts.cxx
index a6badfb21cf3..0cc58dfe332c 100644
--- a/tubes/source/contacts.cxx
+++ b/tubes/source/contacts.cxx
@@ -114,7 +114,7 @@ class TubeContacts : public ModelessDialog
TpAccount* pAccount = maACs[i].first;
SAL_INFO( "tubes", "picked " << tp_account_get_display_name( pAccount ) );
TeleConference* pConference = TeleManager::startGroupSession( pAccount,
- rtl::OUString("liboroom"), rtl::OUString("conference.jabber.org") );
+ OUString("liboroom"), OUString("conference.jabber.org") );
if (!pConference)
SAL_WARN( "tubes", "Could not start group session." );
else
@@ -145,9 +145,9 @@ public:
{
}
- static rtl::OUString fromUTF8( const char *pStr )
+ static OUString fromUTF8( const char *pStr )
{
- return rtl::OStringToOUString( rtl::OString( pStr, strlen( pStr ) ),
+ return OStringToOUString( OString( pStr, strlen( pStr ) ),
RTL_TEXTENCODING_UTF8 );
}
@@ -168,9 +168,9 @@ public:
GFile *pAvatarFile = tp_contact_get_avatar_file( it->second );
if( pAvatarFile )
{
- const rtl::OUString sAvatarFileUrl = fromUTF8( g_file_get_path ( pAvatarFile ) );
+ const OUString sAvatarFileUrl = fromUTF8( g_file_get_path ( pAvatarFile ) );
Graphic aGraphic;
- if( GRFILTER_OK == GraphicFilter::LoadGraphic( sAvatarFileUrl, rtl::OUString(""), aGraphic ) )
+ if( GRFILTER_OK == GraphicFilter::LoadGraphic( sAvatarFileUrl, OUString(""), aGraphic ) )
{
BitmapEx aBitmap = aGraphic.GetBitmapEx();
double fScale = 30.0 / aBitmap.GetSizePixel().Height();
@@ -178,7 +178,7 @@ public:
aImage = Image( aBitmap );
}
}
- rtl::OUStringBuffer aEntry( 128 );
+ OUStringBuffer aEntry( 128 );
aEntry.append( " " );
aEntry.append( fromUTF8 ( tp_contact_get_alias( it->second ) ) );
aEntry.append( " - " );