summaryrefslogtreecommitdiff
path: root/vcl/source/control/spinbtn.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/control/spinbtn.cxx')
-rw-r--r--vcl/source/control/spinbtn.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/source/control/spinbtn.cxx b/vcl/source/control/spinbtn.cxx
index f760aaf669e5..b7d9de824902 100644
--- a/vcl/source/control/spinbtn.cxx
+++ b/vcl/source/control/spinbtn.cxx
@@ -457,16 +457,16 @@ bool SpinButton::PreNotify( NotifyEvent& rNEvt )
Rectangle* pLastRect = ImplFindPartRect( GetLastPointerPosPixel() );
if( pRect != pLastRect || (pMouseEvt->IsLeaveWindow() || pMouseEvt->IsEnterWindow()) )
{
- Region aRgn( GetActiveClipRegion() );
+ vcl::Region aRgn( GetActiveClipRegion() );
if( pLastRect )
{
- SetClipRegion(Region(*pLastRect));
+ SetClipRegion(vcl::Region(*pLastRect));
Paint( *pLastRect );
SetClipRegion( aRgn );
}
if( pRect )
{
- SetClipRegion(Region(*pRect));
+ SetClipRegion(vcl::Region(*pRect));
Paint( *pRect );
SetClipRegion( aRgn );
}