diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2016-01-04 04:25:16 +1100 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2016-01-04 05:16:08 +1100 |
commit | 7eab7f3485e525635f06a505776618c30e442a26 (patch) | |
tree | b02a328084b90e43306589ccf73dddbb757277be /svx/source/tbxctrls/tbunocontroller.cxx | |
parent | 6aa4496c789fec271dcdc7995cf62ef2dabf1f96 (diff) |
Cleanup after removing vcl::FontInfo class
Change-Id: I544eac439cb7277e47a23a90c6fbc45496161c3b
Diffstat (limited to 'svx/source/tbxctrls/tbunocontroller.cxx')
-rw-r--r-- | svx/source/tbxctrls/tbunocontroller.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/svx/source/tbxctrls/tbunocontroller.cxx b/svx/source/tbxctrls/tbunocontroller.cxx index f749f317c5f3..5e51c2e66291 100644 --- a/svx/source/tbxctrls/tbunocontroller.cxx +++ b/svx/source/tbxctrls/tbunocontroller.cxx @@ -195,11 +195,11 @@ void SvxFontSizeBox_Impl::UpdateFont( const css::awt::FontDescriptor& rCurrentFo if ( !rCurrentFont.Name.isEmpty() ) { - FontMetric _aFontInfo; - _aFontInfo.SetName( rCurrentFont.Name ); - _aFontInfo.SetStyleName( rCurrentFont.StyleName ); - _aFontInfo.SetHeight( rCurrentFont.Height ); - Fill( &_aFontInfo, _pFontList ); + FontMetric _aFontMetric; + _aFontMetric.SetName( rCurrentFont.Name ); + _aFontMetric.SetStyleName( rCurrentFont.StyleName ); + _aFontMetric.SetHeight( rCurrentFont.Height ); + Fill( &_aFontMetric, _pFontList ); } else { |