summaryrefslogtreecommitdiff
path: root/svtools/source/control/hyperlabel.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svtools/source/control/hyperlabel.cxx')
-rw-r--r--svtools/source/control/hyperlabel.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svtools/source/control/hyperlabel.cxx b/svtools/source/control/hyperlabel.cxx
index cd7a10ddf89f..e6aab88342e4 100644
--- a/svtools/source/control/hyperlabel.cxx
+++ b/svtools/source/control/hyperlabel.cxx
@@ -89,7 +89,7 @@ namespace svt
void HyperLabel::MouseMove( const MouseEvent& rMEvt )
{
- Font aFont = GetControlFont( );
+ vcl::Font aFont = GetControlFont( );
const Color aColor = GetTextColor();
if (rMEvt.IsLeaveWindow())
@@ -111,7 +111,7 @@ namespace svt
}
}
- void HyperLabel::ActivateHyperMode(Font aFont, const Color aColor)
+ void HyperLabel::ActivateHyperMode(vcl::Font aFont, const Color aColor)
{
aFont.SetUnderline(UNDERLINE_SINGLE);
m_pImpl->m_bHyperMode = true;
@@ -121,7 +121,7 @@ namespace svt
}
- void HyperLabel::DeactivateHyperMode(Font aFont, const Color aColor)
+ void HyperLabel::DeactivateHyperMode(vcl::Font aFont, const Color aColor)
{
m_pImpl->m_bHyperMode = false;
aFont.SetUnderline(UNDERLINE_NONE);