summaryrefslogtreecommitdiff
path: root/jvmfwk
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2019-07-30 17:53:41 +0200
committerStephan Bergmann <sbergman@redhat.com>2019-07-31 12:57:29 +0200
commitfdc49438d5b039506e853098d4bb3bc2fed5c271 (patch)
treeb31c5676c73cbfc8b4de2658b2d7d7f0226f95a5 /jvmfwk
parentbc84173db412a3b78df67897e58324c17a36c361 (diff)
Improved loplugin:stringconstant (now that GCC 7 supports it): jvmfwk
Change-Id: I2bf2c6b5a896cc58195a5b8f85274b9d17c56ac8 Reviewed-on: https://gerrit.libreoffice.org/76667 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'jvmfwk')
-rw-r--r--jvmfwk/inc/libxmlutil.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/jvmfwk/inc/libxmlutil.hxx b/jvmfwk/inc/libxmlutil.hxx
index 1730a59e99a9..8e6f9afaadbd 100644
--- a/jvmfwk/inc/libxmlutil.hxx
+++ b/jvmfwk/inc/libxmlutil.hxx
@@ -89,7 +89,7 @@ public:
CXmlCharPtr & operator = (xmlChar* pObj);
operator xmlChar* () const { return _object;}
operator OUString ();
- operator OString () { return OString(reinterpret_cast<sal_Char*>(_object));}
+ operator OString () { return reinterpret_cast<sal_Char*>(_object);}
};