summaryrefslogtreecommitdiff
path: root/svx/source/dialog/rubydialog.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/dialog/rubydialog.cxx')
-rw-r--r--svx/source/dialog/rubydialog.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/dialog/rubydialog.cxx b/svx/source/dialog/rubydialog.cxx
index 0d35871225d0..3dab36e07d46 100644
--- a/svx/source/dialog/rubydialog.cxx
+++ b/svx/source/dialog/rubydialog.cxx
@@ -721,7 +721,7 @@ void SvxRubyDialog::UpdateColors( void )
const StyleSettings& rStyleSettings = GetSettings().GetStyleSettings();
svtools::ColorConfig aColorConfig;
- Font aFnt( m_pPreviewWin->GetFont() );
+ vcl::Font aFnt( m_pPreviewWin->GetFont() );
Color aNewTextCol( aColorConfig.GetColorValue( svtools::FONTCOLOR ).nColor );
Color aNewFillCol( rStyleSettings.GetWindowColor() );
@@ -769,7 +769,7 @@ void RubyPreview::Paint( const Rectangle& /* rRect */ )
{
Size aWinSize = GetOutputSize();
- Font aSaveFont = GetFont();
+ vcl::Font aSaveFont = GetFont();
aSaveFont.SetHeight(aWinSize.Height() / 4);
SetFont(aSaveFont);
@@ -784,7 +784,7 @@ void RubyPreview::Paint( const Rectangle& /* rRect */ )
long nTextHeight = GetTextHeight();
long nBaseWidth = GetTextWidth(sBaseText);
- Font aRubyFont(aSaveFont);
+ vcl::Font aRubyFont(aSaveFont);
aRubyFont.SetHeight(aRubyFont.GetHeight() * 70 / 100);
SetFont(aRubyFont);
long nRubyWidth = GetTextWidth(sRubyText);