summaryrefslogtreecommitdiff
path: root/vcl/source/filter/FilterConfigCache.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 /vcl/source/filter/FilterConfigCache.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 'vcl/source/filter/FilterConfigCache.cxx')
-rw-r--r--vcl/source/filter/FilterConfigCache.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/vcl/source/filter/FilterConfigCache.cxx b/vcl/source/filter/FilterConfigCache.cxx
index b0a8bcfa5ba9..e354457bf676 100644
--- a/vcl/source/filter/FilterConfigCache.cxx
+++ b/vcl/source/filter/FilterConfigCache.cxx
@@ -87,7 +87,7 @@ sal_Bool FilterConfigCache::FilterConfigCacheEntry::CreateFilterName( const OUSt
if ( sFilterName.EqualsIgnoreCaseAscii( *pPtr ) )
bIsPixelFormat = sal_True;
}
- rtl::OUString sTemp(SVLIBRARY("?"));
+ OUString sTemp(SVLIBRARY("?"));
sal_Int32 nIndex = sTemp.indexOf(static_cast<sal_Unicode>('?'));
sFilterName = sTemp.replaceAt(nIndex, 1, sFilterName);
}
@@ -194,7 +194,7 @@ void FilterConfigCache::ImplInit()
else if (lFlags[0].equalsIgnoreAsciiCase("export"))
aEntry.nFlags = 2;
- ::rtl::OUString sFormatName;
+ OUString sFormatName;
xFilterSet->getPropertyValue(SFORMATNAME) >>= sFormatName;
aEntry.CreateFilterName( sFormatName );
@@ -286,7 +286,7 @@ void FilterConfigCache::ImplInitSmart()
aEntry.sType = sExtension;
aEntry.sUIName = sExtension;
- rtl::OString sFlags( *pPtr++ );
+ OString sFlags( *pPtr++ );
aEntry.nFlags = sFlags.toInt32();
OUString sUserData( OUString::createFromAscii( *pPtr ) );
@@ -427,7 +427,7 @@ String FilterConfigCache::GetImportWildcard( sal_uInt16 nFormat, sal_Int32 nEntr
{
String aWildcard( GetImportFormatExtension( nFormat, nEntry ) );
if ( aWildcard.Len() )
- aWildcard.Insert( rtl::OUString("*."), 0 );
+ aWildcard.Insert( OUString("*."), 0 );
return aWildcard;
}
@@ -541,7 +541,7 @@ String FilterConfigCache::GetExportWildcard( sal_uInt16 nFormat, sal_Int32 nEntr
{
String aWildcard( GetExportFormatExtension( nFormat, nEntry ) );
if ( aWildcard.Len() )
- aWildcard.Insert( rtl::OUString("*."), 0 );
+ aWildcard.Insert( OUString("*."), 0 );
return aWildcard;
}