summaryrefslogtreecommitdiff
path: root/sw/source/uibase/inc/shdwcrsr.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/uibase/inc/shdwcrsr.hxx')
-rw-r--r--sw/source/uibase/inc/shdwcrsr.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/uibase/inc/shdwcrsr.hxx b/sw/source/uibase/inc/shdwcrsr.hxx
index e5c6478f9215..631fde3d7f5b 100644
--- a/sw/source/uibase/inc/shdwcrsr.hxx
+++ b/sw/source/uibase/inc/shdwcrsr.hxx
@@ -23,11 +23,11 @@
#include <tools/color.hxx>
#include <limits.h>
-class Window;
+namespace vcl { class Window; }
class SwShadowCursor
{
- Window* pWin;
+ vcl::Window* pWin;
Color aCol;
Point aOldPt;
long nOldHeight;
@@ -37,7 +37,7 @@ class SwShadowCursor
void DrawCrsr( const Point& rPt, long nHeight, sal_uInt16 nMode );
public:
- SwShadowCursor( Window& rWin, const Color& rCol )
+ SwShadowCursor( vcl::Window& rWin, const Color& rCol )
: pWin( &rWin ), aCol( rCol ), nOldHeight(0), nOldMode( USHRT_MAX ) {}
~SwShadowCursor();