summaryrefslogtreecommitdiff
path: root/include/vcl/taskpanelist.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-09-23 11:20:40 +0200
committerNoel Grandin <noel@peralex.com>2014-09-23 14:11:39 +0300
commit827c46e7d75000cb03b0ce21759f9d0825f0c096 (patch)
tree3a84ccc45d54607c61328b18f58f914c1d6ec240 /include/vcl/taskpanelist.hxx
parent7cbbefae224ab85343accb42b03f9431ec693a83 (diff)
fdo#82577: Handle Window
Put the VCL Window class in the vcl namespace. Avoids clash with the X11 Window typedef. Change-Id: Ib1beb7ab4ad75562a42aeb252732a073d25eff1a
Diffstat (limited to 'include/vcl/taskpanelist.hxx')
-rw-r--r--include/vcl/taskpanelist.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/vcl/taskpanelist.hxx b/include/vcl/taskpanelist.hxx
index 8910ca2873c3..6e8888dc4eec 100644
--- a/include/vcl/taskpanelist.hxx
+++ b/include/vcl/taskpanelist.hxx
@@ -27,19 +27,19 @@
class VCL_DLLPUBLIC TaskPaneList
{
- ::std::vector<Window *> mTaskPanes;
- Window *FindNextFloat( Window *pWindow, bool bForward = true );
- Window *FindNextSplitter( Window *pWindow, bool bForward = true );
+ ::std::vector<vcl::Window *> mTaskPanes;
+ vcl::Window *FindNextFloat( vcl::Window *pWindow, bool bForward = true );
+ vcl::Window *FindNextSplitter( vcl::Window *pWindow, bool bForward = true );
public:
- bool IsInList( Window *pWindow );
+ bool IsInList( vcl::Window *pWindow );
public:
TaskPaneList();
~TaskPaneList();
- void AddWindow( Window *pWindow );
- void RemoveWindow( Window *pWindow );
+ void AddWindow( vcl::Window *pWindow );
+ void RemoveWindow( vcl::Window *pWindow );
bool HandleKeyEvent( KeyEvent aKeyEvent );
};