diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-04-11 21:38:46 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-04-12 09:36:20 +0200 |
commit | 346b5cfd9078826f8705e226ad317b2e4c58162d (patch) | |
tree | 150f002d8c5c7b27bd0e5ab4157818e22da0507f /desktop | |
parent | e2ba48e50d30a4cbcf7a9b0208baaa395114f6e8 (diff) |
Convert some rtl_uString -> OUString in jvmfwk
Change-Id: I08de5cab29dabc6fd824d5df8bac12c8520a05ae
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/source/migration/services/jvmfwk.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/source/migration/services/jvmfwk.cxx b/desktop/source/migration/services/jvmfwk.cxx index 9fb42e96c9e8..fc858ec3a039 100644 --- a/desktop/source/migration/services/jvmfwk.cxx +++ b/desktop/source/migration/services/jvmfwk.cxx @@ -239,7 +239,7 @@ void JavaMigration::migrateJavarc() { //get the directory std::unique_ptr<JavaInfo> aInfo; - javaFrameworkError err = jfw_getJavaInfoByPath(sValue.pData, &aInfo); + javaFrameworkError err = jfw_getJavaInfoByPath(sValue, &aInfo); if (err == JFW_E_NONE) { @@ -339,7 +339,7 @@ void SAL_CALL JavaMigration::setPropertyValue( "[Service implementation " IMPL_NAME "] XLayerHandler::setPropertyValue received wrong type for UserClassPath property", nullptr, Any()); - if (jfw_setUserClassPath(cp.pData) != JFW_E_NONE) + if (jfw_setUserClassPath(cp) != JFW_E_NONE) throw WrappedTargetException( "[Service implementation " IMPL_NAME "] XLayerHandler::setPropertyValue: jfw_setUserClassPath failed.", nullptr, Any()); |