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.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svtools/source/control/hyperlabel.cxx b/svtools/source/control/hyperlabel.cxx
index fa826230e2ec..1814bc03da64 100644
--- a/svtools/source/control/hyperlabel.cxx
+++ b/svtools/source/control/hyperlabel.cxx
@@ -115,7 +115,7 @@ namespace svt
{
aFont.SetUnderline(UNDERLINE_SINGLE);
m_pImpl->m_bHyperMode = true;
- SetPointer( POINTER_REFHAND );
+ SetPointer( PointerStyle::RefHand );
SetControlFont( aFont);
SetTextColor( aColor);
@@ -125,7 +125,7 @@ namespace svt
{
m_pImpl->m_bHyperMode = false;
aFont.SetUnderline(UNDERLINE_NONE);
- SetPointer( POINTER_ARROW );
+ SetPointer( PointerStyle::Arrow );
SetControlFont( aFont);
SetTextColor( aColor);
}