diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-12-18 13:36:10 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-12-18 14:12:35 +0100 |
commit | 44199e81a1ef4e8712883f8bd191ef239335e06c (patch) | |
tree | c2278c4dc95a2fb5d15d8a4a75676d2f87e0e3b6 /toolkit/source/controls/tkspinbutton.cxx | |
parent | ac6174bd0d3c896a4ab0a0a1ae93197441dd64ff (diff) |
toolkit: Use appropriate OUString functions on string constants
Change-Id: Iad8c0ffce9f0b17556f5305929715ddc0cce1042
Diffstat (limited to 'toolkit/source/controls/tkspinbutton.cxx')
-rw-r--r-- | toolkit/source/controls/tkspinbutton.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/toolkit/source/controls/tkspinbutton.cxx b/toolkit/source/controls/tkspinbutton.cxx index 9635eb328e4b..7d2312535a9c 100644 --- a/toolkit/source/controls/tkspinbutton.cxx +++ b/toolkit/source/controls/tkspinbutton.cxx @@ -197,7 +197,7 @@ public: { Sequence< OUString > aServices( UnoControlModel::getSupportedServiceNames() ); aServices.realloc( aServices.getLength() + 1 ); - aServices[ aServices.getLength() - 1 ] = OUString("com.sun.star.awt.UnoControlSpinButtonModel"); + aServices[ aServices.getLength() - 1 ] = "com.sun.star.awt.UnoControlSpinButtonModel"; return aServices; } @@ -260,7 +260,7 @@ public: { Sequence< OUString > aServices( UnoControlBase::getSupportedServiceNames() ); aServices.realloc( aServices.getLength() + 1 ); - aServices[ aServices.getLength() - 1 ] = OUString("com.sun.star.awt.UnoControlSpinButton"); + aServices[ aServices.getLength() - 1 ] = "com.sun.star.awt.UnoControlSpinButton"; return aServices; } |