summaryrefslogtreecommitdiff
path: root/include/vcl/seleng.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/vcl/seleng.hxx')
-rw-r--r--include/vcl/seleng.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/vcl/seleng.hxx b/include/vcl/seleng.hxx
index bdb2e3cb4248..afe30c39a87a 100644
--- a/include/vcl/seleng.hxx
+++ b/include/vcl/seleng.hxx
@@ -24,7 +24,7 @@
#include <vcl/timer.hxx>
#include <vcl/event.hxx>
-class Window;
+namespace vcl { class Window; }
class CommandEvent;
// Timerticks
@@ -77,7 +77,7 @@ class VCL_DLLPUBLIC SelectionEngine
{
private:
FunctionSet* pFunctionSet;
- Window* pWin;
+ vcl::Window* pWin;
Rectangle aArea;
Timer aWTimer; // generate fake mouse moves
MouseEvent aLastMove;
@@ -91,7 +91,7 @@ private:
// determines to deselect or not when Ctrl-key is pressed on CursorPosChanging
public:
- SelectionEngine( Window* pWindow,
+ SelectionEngine( vcl::Window* pWindow,
FunctionSet* pFunctions = NULL,
sal_uLong nAutoRepeatInterval = SELENG_AUTOREPEAT_INTERVAL );
~SelectionEngine();
@@ -129,8 +129,8 @@ public:
{ return aLastMove.GetPosPixel(); }
const MouseEvent& GetMouseEvent() const { return aLastMove; }
- void SetWindow( Window*);
- Window* GetWindow() const { return pWin; }
+ void SetWindow( vcl::Window*);
+ vcl::Window* GetWindow() const { return pWin; }
void LockModifiers( sal_uInt16 nModifiers )
{ nLockedMods = nModifiers; }