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/animatedimages.cxx | |
parent | ac6174bd0d3c896a4ab0a0a1ae93197441dd64ff (diff) |
toolkit: Use appropriate OUString functions on string constants
Change-Id: Iad8c0ffce9f0b17556f5305929715ddc0cce1042
Diffstat (limited to 'toolkit/source/controls/animatedimages.cxx')
-rw-r--r-- | toolkit/source/controls/animatedimages.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolkit/source/controls/animatedimages.cxx b/toolkit/source/controls/animatedimages.cxx index a79743149e71..60a10c66cbe4 100644 --- a/toolkit/source/controls/animatedimages.cxx +++ b/toolkit/source/controls/animatedimages.cxx @@ -129,7 +129,7 @@ public: { Sequence< OUString > aServices( AnimatedImagesControl_Base::getSupportedServiceNames() ); aServices.realloc( aServices.getLength() + 1 ); - aServices[ aServices.getLength() - 1 ] = OUString("com.sun.star.awt.AnimatedImagesControl"); + aServices[ aServices.getLength() - 1 ] = "com.sun.star.awt.AnimatedImagesControl"; return aServices; } |