summaryrefslogtreecommitdiff
path: root/jvmaccess/inc
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 /jvmaccess/inc
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 'jvmaccess/inc')
-rw-r--r--jvmaccess/inc/jvmaccess/classpath.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/jvmaccess/inc/jvmaccess/classpath.hxx b/jvmaccess/inc/jvmaccess/classpath.hxx
index 507af76d3759..ab1a6c53f322 100644
--- a/jvmaccess/inc/jvmaccess/classpath.hxx
+++ b/jvmaccess/inc/jvmaccess/classpath.hxx
@@ -67,7 +67,7 @@ public:
translateToUrls(
::com::sun::star::uno::Reference<
::com::sun::star::uno::XComponentContext > const & context,
- ::JNIEnv * environment, ::rtl::OUString const & classPath)
+ ::JNIEnv * environment, OUString const & classPath)
{
return
static_cast< ::jobjectArray >(
@@ -103,8 +103,8 @@ public:
static inline ::jclass loadClass(
::com::sun::star::uno::Reference<
::com::sun::star::uno::XComponentContext > const & context,
- ::JNIEnv * environment, ::rtl::OUString const & classPath,
- ::rtl::OUString const & name)
+ ::JNIEnv * environment, OUString const & classPath,
+ OUString const & name)
{
return
static_cast< ::jclass >(
@@ -124,13 +124,13 @@ private:
static void * doTranslateToUrls(
::com::sun::star::uno::Reference<
::com::sun::star::uno::XComponentContext > const & context,
- void * environment, ::rtl::OUString const & classPath);
+ void * environment, OUString const & classPath);
static void * doLoadClass(
::com::sun::star::uno::Reference<
::com::sun::star::uno::XComponentContext > const & context,
- void * environment, ::rtl::OUString const & classPath,
- ::rtl::OUString const & name);
+ void * environment, OUString const & classPath,
+ OUString const & name);
};
}