diff options
author | Tor Lillqvist <tml@collabora.com> | 2016-02-18 10:06:38 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2016-02-18 10:06:38 +0200 |
commit | cf6cbd29fdeba54bd83a87c1165d49312dc2d2a6 (patch) | |
tree | 5b887c4d4c38a190458068e9c73678d2ead7781d /stoc | |
parent | bd707a4831f6ad0a343729cc057a0daf866b0333 (diff) |
WaE: replace OUString constructed from a string literal directly ...
... with the string literal [loplugin:stringconstant]
Change-Id: I38fff65c8b5da320ad82419f5c7b46f35da2aa62
Diffstat (limited to 'stoc')
-rw-r--r-- | stoc/source/javavm/javavm.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stoc/source/javavm/javavm.cxx b/stoc/source/javavm/javavm.cxx index 64b55f76b55b..918707f1ef9e 100644 --- a/stoc/source/javavm/javavm.cxx +++ b/stoc/source/javavm/javavm.cxx @@ -540,7 +540,7 @@ void initVMConfiguration( // java-side force look and feel to something that doesn't // crash when we are using gtk3 if (getenv("STOC_FORCE_SYSTEM_LAF")) - pjvm->pushProp(OUString("swing.systemlaf=javax.swing.plaf.metal.MetalLookAndFeel")); + pjvm->pushProp("swing.systemlaf=javax.swing.plaf.metal.MetalLookAndFeel"); setTimeZone(pjvm); } |