summaryrefslogtreecommitdiff
path: root/sd/source/ui/slidesorter/view/SlsTheme.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/slidesorter/view/SlsTheme.cxx')
-rw-r--r--sd/source/ui/slidesorter/view/SlsTheme.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sd/source/ui/slidesorter/view/SlsTheme.cxx b/sd/source/ui/slidesorter/view/SlsTheme.cxx
index a0ce837beaf0..d7fddd2b7d5a 100644
--- a/sd/source/ui/slidesorter/view/SlsTheme.cxx
+++ b/sd/source/ui/slidesorter/view/SlsTheme.cxx
@@ -128,22 +128,22 @@ void Theme::Update (const ::boost::shared_ptr<controller::Properties>& rpPropert
}
}
-::boost::shared_ptr<Font> Theme::GetFont (
+::boost::shared_ptr<vcl::Font> Theme::GetFont (
const FontType eType,
const OutputDevice& rDevice)
{
- ::boost::shared_ptr<Font> pFont;
+ ::boost::shared_ptr<vcl::Font> pFont;
switch (eType)
{
case Font_PageNumber:
- pFont.reset(new Font(Application::GetSettings().GetStyleSettings().GetAppFont()));
+ pFont.reset(new vcl::Font(Application::GetSettings().GetStyleSettings().GetAppFont()));
pFont->SetTransparent(true);
pFont->SetWeight(WEIGHT_BOLD);
break;
case Font_PageCount:
- pFont.reset(new Font(Application::GetSettings().GetStyleSettings().GetAppFont()));
+ pFont.reset(new vcl::Font(Application::GetSettings().GetStyleSettings().GetAppFont()));
pFont->SetTransparent(true);
pFont->SetWeight(WEIGHT_NORMAL);
{