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/grid | |
parent | ac6174bd0d3c896a4ab0a0a1ae93197441dd64ff (diff) |
toolkit: Use appropriate OUString functions on string constants
Change-Id: Iad8c0ffce9f0b17556f5305929715ddc0cce1042
Diffstat (limited to 'toolkit/source/controls/grid')
-rw-r--r-- | toolkit/source/controls/grid/sortablegriddatamodel.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolkit/source/controls/grid/sortablegriddatamodel.cxx b/toolkit/source/controls/grid/sortablegriddatamodel.cxx index 1aab3bc91931..2ca1297ea9f6 100644 --- a/toolkit/source/controls/grid/sortablegriddatamodel.cxx +++ b/toolkit/source/controls/grid/sortablegriddatamodel.cxx @@ -889,7 +889,7 @@ private: Sequence< OUString > SAL_CALL SortableGridDataModel::getSupportedServiceNames( ) throw (RuntimeException, std::exception) { Sequence< OUString > aServiceNames(1); - aServiceNames[0] = OUString("com.sun.star.awt.grid.SortableGridDataModel"); + aServiceNames[0] = "com.sun.star.awt.grid.SortableGridDataModel"; return aServiceNames; } |