summaryrefslogtreecommitdiff
path: root/include/svtools/ctrltool.hxx
diff options
context:
space:
mode:
authorChris Sherlock <chris.sherlock79@gmail.com>2016-01-04 04:25:16 +1100
committerChris Sherlock <chris.sherlock79@gmail.com>2016-01-04 05:16:08 +1100
commit7eab7f3485e525635f06a505776618c30e442a26 (patch)
treeb02a328084b90e43306589ccf73dddbb757277be /include/svtools/ctrltool.hxx
parent6aa4496c789fec271dcdc7995cf62ef2dabf1f96 (diff)
Cleanup after removing vcl::FontInfo class
Change-Id: I544eac439cb7277e47a23a90c6fbc45496161c3b
Diffstat (limited to 'include/svtools/ctrltool.hxx')
-rw-r--r--include/svtools/ctrltool.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/svtools/ctrltool.hxx b/include/svtools/ctrltool.hxx
index 3c5449fb9370..993287f7b401 100644
--- a/include/svtools/ctrltool.hxx
+++ b/include/svtools/ctrltool.hxx
@@ -73,14 +73,14 @@ With sal_False vectorized and scalable fonts will be queried.
--------------------------------------------------------------------------
-String FontList::GetStyleName( const FontMetric& rInfo ) const;
+String FontList::GetStyleName( const FontMetric& rFontMetric ) const;
This method returns the StyleName of a FontMetric.
If no StyleName is set, a name will be generated from the set attributes.
--------------------------------------------------------------------------
-OUString FontList::GetFontMapText( const FontMetric& rInfo ) const;
+OUString FontList::GetFontMapText( const FontMetric& rFontMetric ) const;
This method returns a Matchstring which indicates the problem that could
arise when using a font. This string should be displayed to the user.
@@ -116,7 +116,7 @@ FontList::GetStyleName()
--------------------------------------------------------------------------
-const sal_IntPtr* FontList::GetSizeAry( const FontMetric& rInfo ) const;
+const sal_IntPtr* FontList::GetSizeAry( const FontMetric& rFontMetric ) const;
This method returns the available sizes for the given font.
If it is a scalable font, standard sizes are returned.
@@ -166,14 +166,14 @@ public:
FontList* Clone() const;
- OUString GetFontMapText( const FontMetric& rInfo ) const;
+ OUString GetFontMapText( const FontMetric& rFontMetric ) const;
const OUString& GetNormalStr() const { return maNormal; }
const OUString& GetItalicStr() const { return maNormalItalic; }
const OUString& GetBoldStr() const { return maBold; }
const OUString& GetBoldItalicStr() const { return maBoldItalic; }
const OUString& GetStyleName( FontWeight eWeight, FontItalic eItalic ) const;
- OUString GetStyleName( const FontMetric& rInfo ) const;
+ OUString GetStyleName( const FontMetric& rFontMetric ) const;
FontMetric Get( const OUString& rName,
const OUString& rStyleName ) const;
@@ -191,7 +191,7 @@ public:
static sal_Handle GetNextFontMetric( sal_Handle hFontMetric );
static const FontMetric& GetFontMetric( sal_Handle hFontMetric );
- const sal_IntPtr* GetSizeAry( const FontMetric& rInfo ) const;
+ const sal_IntPtr* GetSizeAry( const FontMetric& rFontMetric ) const;
static const sal_IntPtr* GetStdSizeAry() { return aStdSizeAry; }
private: