summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-09-03 08:11:22 +0200
committerNoel Grandin <noel@peralex.com>2013-09-05 08:54:22 +0200
commitddab20567671f04ba425e7da1256ebc11a4ae620 (patch)
tree77f011a30c4defbcd04e82b033b11eac48cec215
parentaa1ccde1d2956c95fe44fb111e3a2f835b5c6fc6 (diff)
convert include/svx/svdetc.hxx from String to OUString
Change-Id: Ic739dc4749afa1476c87d3e2d35eb31d7e888932
-rw-r--r--include/svx/svdetc.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/svx/svdetc.hxx b/include/svx/svdetc.hxx
index b17927531c0e..eec572efb2f4 100644
--- a/include/svx/svdetc.hxx
+++ b/include/svx/svdetc.hxx
@@ -58,7 +58,7 @@ SVX_DLLPUBLIC SdrOutliner* SdrMakeOutliner( sal_uInt16 nOutlinerMode, SdrModel*
class SVX_DLLPUBLIC SdrEngineDefaults
{
friend class SdrAttrObj;
- String aFontName;
+ OUString aFontName;
FontFamily eFontFamily;
Color aFontColor;
sal_uIntPtr nFontHeight;
@@ -71,8 +71,8 @@ private:
public:
SdrEngineDefaults();
// Default Fontname ist "Times New Roman"
- static void SetFontName(const String& rFontName) { GetDefaults().aFontName=rFontName; }
- static String GetFontName() { return GetDefaults().aFontName; }
+ static void SetFontName(const OUString& rFontName) { GetDefaults().aFontName=rFontName; }
+ static OUString GetFontName() { return GetDefaults().aFontName; }
// Default FontFamily ist FAMILY_ROMAN
static void SetFontFamily(FontFamily eFam) { GetDefaults().eFontFamily=eFam; }
static FontFamily GetFontFamily() { return GetDefaults().eFontFamily; }