diff options
author | Noel Grandin <noel@peralex.com> | 2013-08-22 14:33:31 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-08-29 09:29:59 +0200 |
commit | 1f1aa5840dd433a03c4c77dfb19ad40bccac0e70 (patch) | |
tree | 03fbdf238e3fb8058f92aa4ee85bf3f8688cf68e /include/sfx2/styfitem.hxx | |
parent | a606147d8d4c402d44e665f523efceadee45ed26 (diff) |
convert include/sfx2/styfitem.hxx from String to OUString
Change-Id: I442336580573a8a5dbdba4d49ebc2e4e2b64f41a
Diffstat (limited to 'include/sfx2/styfitem.hxx')
-rw-r--r-- | include/sfx2/styfitem.hxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/sfx2/styfitem.hxx b/include/sfx2/styfitem.hxx index 4ab8ccb209fa..67beb335833a 100644 --- a/include/sfx2/styfitem.hxx +++ b/include/sfx2/styfitem.hxx @@ -30,7 +30,7 @@ #include <vector> struct SfxFilterTupel { - String aName; + OUString aName; sal_uInt16 nFlags; }; typedef ::std::vector< SfxFilterTupel* > SfxStyleFilter; @@ -41,9 +41,9 @@ class SfxStyleFamilyItem: public Resource { Image aImage; Bitmap aBitmap; - String aText; - String aHelpText; - sal_uInt16 nFamily; + OUString aText; + OUString aHelpText; + sal_uInt16 nFamily; SfxStyleFilter aFilterList; public: @@ -51,8 +51,8 @@ public: ~SfxStyleFamilyItem(); const Bitmap& GetBitmap() const { return aBitmap; } - const String& GetText() const { return aText; } - const String& GetHelpText() const { return aHelpText; } + const OUString& GetText() const { return aText; } + const OUString& GetHelpText() const { return aHelpText; } SfxStyleFamily GetFamily() const { return (SfxStyleFamily)nFamily; } const SfxStyleFilter& GetFilterList() const { return aFilterList; } const Image& GetImage() const { return aImage; } |