summaryrefslogtreecommitdiff
path: root/vcl/source/window/debug.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/window/debug.cxx')
-rw-r--r--vcl/source/window/debug.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/window/debug.cxx b/vcl/source/window/debug.cxx
index 4aa875a658d9..70e50ef5d5f9 100644
--- a/vcl/source/window/debug.cxx
+++ b/vcl/source/window/debug.cxx
@@ -27,13 +27,13 @@ const char* ImplDbgCheckWindow( const void* pObj )
{
DBG_TESTSOLARMUTEX();
- const Window* pWindow = (Window*)pObj;
+ const vcl::Window* pWindow = (vcl::Window*)pObj;
if ( (pWindow->GetType() < WINDOW_FIRST) || (pWindow->GetType() > WINDOW_LAST) )
return "Window data overwrite";
// check window-chain
- Window* pChild = pWindow->mpWindowImpl->mpFirstChild;
+ vcl::Window* pChild = pWindow->mpWindowImpl->mpFirstChild;
while ( pChild )
{
if ( pChild->mpWindowImpl->mpParent != pWindow )