summaryrefslogtreecommitdiff
path: root/sd/source/ui/func/fuformatpaintbrush.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/func/fuformatpaintbrush.cxx')
-rw-r--r--sd/source/ui/func/fuformatpaintbrush.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sd/source/ui/func/fuformatpaintbrush.cxx b/sd/source/ui/func/fuformatpaintbrush.cxx
index 5177664529b2..380bcef2bd1f 100644
--- a/sd/source/ui/func/fuformatpaintbrush.cxx
+++ b/sd/source/ui/func/fuformatpaintbrush.cxx
@@ -155,7 +155,7 @@ bool FuFormatPaintBrush::MouseMove(const MouseEvent& rMEvt)
if ( mpView->IsTextEdit() )
{
bReturn = FuText::MouseMove( rMEvt );
- mpWindow->SetPointer(Pointer(POINTER_FILL));
+ mpWindow->SetPointer(Pointer(PointerStyle::Fill));
}
else
{
@@ -165,9 +165,9 @@ bool FuFormatPaintBrush::MouseMove(const MouseEvent& rMEvt)
bool bOverMarkableObject = mpView->PickObj( mpWindow->PixelToLogic( rMEvt.GetPosPixel() ),nHitLog, pObj, pPV, SdrSearchOptions::PICKMARKABLE);
if(bOverMarkableObject && HasContentForThisType(pObj->GetObjInventor(),pObj->GetObjIdentifier()) )
- mpWindow->SetPointer(Pointer(POINTER_FILL));
+ mpWindow->SetPointer(Pointer(PointerStyle::Fill));
else
- mpWindow->SetPointer(Pointer(POINTER_ARROW));
+ mpWindow->SetPointer(Pointer(PointerStyle::Arrow));
}
}
return bReturn;