summaryrefslogtreecommitdiff
path: root/vcl/source/window/window3.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/window/window3.cxx')
-rw-r--r--vcl/source/window/window3.cxx7
1 files changed, 6 insertions, 1 deletions
diff --git a/vcl/source/window/window3.cxx b/vcl/source/window/window3.cxx
index 6774a022ad4f..570b7478fa98 100644
--- a/vcl/source/window/window3.cxx
+++ b/vcl/source/window/window3.cxx
@@ -27,6 +27,8 @@ WaitObject::~WaitObject()
mpWindow->LeaveWait();
}
+namespace vcl {
+
Size Window::GetOptimalSize() const
{
return Size();
@@ -45,7 +47,7 @@ void Window::ImplAdjustNWFSizes()
default:
{
// iterate over children
- Window* pWin = GetWindow( WINDOW_FIRSTCHILD );
+ vcl::Window* pWin = GetWindow( WINDOW_FIRSTCHILD );
while( pWin )
{
pWin->ImplAdjustNWFSizes();
@@ -56,4 +58,7 @@ void Window::ImplAdjustNWFSizes()
}
}
+} /* namespace vcl */
+
+
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */