summaryrefslogtreecommitdiff
path: root/dtrans/source/win32/ftransl/ftransl.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 /dtrans/source/win32/ftransl/ftransl.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 'dtrans/source/win32/ftransl/ftransl.cxx')
-rw-r--r--dtrans/source/win32/ftransl/ftransl.cxx15
1 files changed, 7 insertions, 8 deletions
diff --git a/dtrans/source/win32/ftransl/ftransl.cxx b/dtrans/source/win32/ftransl/ftransl.cxx
index 1f141f2faf56..70724c1600a8 100644
--- a/dtrans/source/win32/ftransl/ftransl.cxx
+++ b/dtrans/source/win32/ftransl/ftransl.cxx
@@ -39,19 +39,18 @@
#define MODULE_PRIVATE
#define CPPUTYPE_SEQSALINT8 getCppuType( (const Sequence< sal_Int8 >*) 0 )
#define CPPUTYPE_DEFAULT CPPUTYPE_SEQSALINT8
-#define CPPUTYPE_OUSTR getCppuType( (const ::rtl::OUString*) 0 )
+#define CPPUTYPE_OUSTR getCppuType( (const OUString*) 0 )
#define CPPUTYPE_SALINT32 getCppuType( ( sal_Int32 * ) 0 )
#define EMPTY_OUSTR OUString()
-const rtl::OUString Windows_FormatName ("windows_formatname");
+const OUString Windows_FormatName ("windows_formatname");
const com::sun::star::uno::Type CppuType_ByteSequence = ::getCppuType((const com::sun::star::uno::Sequence<sal_Int8>*)0);
-const com::sun::star::uno::Type CppuType_String = ::getCppuType((const ::rtl::OUString*)0);
+const com::sun::star::uno::Type CppuType_String = ::getCppuType((const OUString*)0);
//------------------------------------------------------------------------
// namespace directives
//------------------------------------------------------------------------
-using ::rtl::OUString;
using namespace osl;
using namespace cppu;
using namespace std;
@@ -93,14 +92,14 @@ FormatEntry::FormatEntry(
CLIPFORMAT std_clipboard_format_id,
::com::sun::star::uno::Type const & cppu_type)
{
- aDataFlavor.MimeType = rtl::OUString::createFromAscii(mime_content_type);
- aDataFlavor.HumanPresentableName = rtl::OUString::createFromAscii(human_presentable_name);
+ aDataFlavor.MimeType = OUString::createFromAscii(mime_content_type);
+ aDataFlavor.HumanPresentableName = OUString::createFromAscii(human_presentable_name);
aDataFlavor.DataType = cppu_type;
if (native_format_name)
- aNativeFormatName = rtl::OUString::createFromAscii(native_format_name);
+ aNativeFormatName = OUString::createFromAscii(native_format_name);
else
- aNativeFormatName = rtl::OUString::createFromAscii(human_presentable_name);
+ aNativeFormatName = OUString::createFromAscii(human_presentable_name);
aStandardFormatId = std_clipboard_format_id;
}