From 1f1aa5840dd433a03c4c77dfb19ad40bccac0e70 Mon Sep 17 00:00:00 2001
From: Noel Grandin <noel@peralex.com>
Date: Thu, 22 Aug 2013 14:33:31 +0200
Subject: convert include/sfx2/styfitem.hxx from String to OUString

Change-Id: I442336580573a8a5dbdba4d49ebc2e4e2b64f41a
---
 include/sfx2/styfitem.hxx | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

(limited to 'include/sfx2/styfitem.hxx')

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; }
-- 
cgit