summaryrefslogtreecommitdiff
path: root/include/vcl
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-08-06 14:41:17 +0200
committerNoel Grandin <noel@peralex.com>2013-08-12 11:56:42 +0200
commit4e0d0ee6743105e35fd25540d231813c7cb59308 (patch)
tree5e6dd3807213d15da0f3df44d8eeee2e51c56bdd /include/vcl
parent7473e8a4569227b692f30793276f1c1b4de7532b (diff)
convert vcl/font.hxx from String to OUString
Change-Id: I3df88f26516296ca8f4e81576e86372c8b499a84
Diffstat (limited to 'include/vcl')
-rw-r--r--include/vcl/font.hxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/include/vcl/font.hxx b/include/vcl/font.hxx
index d886d48b9854..5fea235c65f9 100644
--- a/include/vcl/font.hxx
+++ b/include/vcl/font.hxx
@@ -48,8 +48,8 @@ private:
public:
Font();
Font( const Font& );
- Font( const String& rFamilyName, const Size& );
- Font( const String& rFamilyName, const String& rStyleName, const Size& );
+ Font( const OUString& rFamilyName, const Size& );
+ Font( const OUString& rFamilyName, const OUString& rStyleName, const Size& );
Font( FontFamily eFamily, const Size& );
~Font();
@@ -60,14 +60,14 @@ public:
void SetFillColor( const Color& );
const Color& GetFillColor() const;
void SetTransparent( sal_Bool bTransparent );
- sal_Bool IsTransparent() const;
+ sal_Bool IsTransparent() const;
void SetAlign( FontAlign );
FontAlign GetAlign() const;
void SetName( const OUString& rFamilyName );
- const String& GetName() const;
- void SetStyleName( const String& rStyleName );
- const String& GetStyleName() const;
+ const OUString& GetName() const;
+ void SetStyleName( const OUString& rStyleName );
+ const OUString& GetStyleName() const;
void SetSize( const Size& );
const Size& GetSize() const;
void SetHeight( long nHeight );
@@ -89,10 +89,10 @@ public:
void SetOrientation( short nLineOrientation );
short GetOrientation() const;
void SetVertical( sal_Bool bVertical );
- sal_Bool IsVertical() const;
+ sal_Bool IsVertical() const;
void SetKerning( FontKerning nKerning );
FontKerning GetKerning() const;
- sal_Bool IsKerning() const;
+ sal_Bool IsKerning() const;
void SetWeight( FontWeight );
FontWeight GetWeight() const;