summaryrefslogtreecommitdiff
path: root/vcl/source/window/settings.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/window/settings.cxx')
-rw-r--r--vcl/source/window/settings.cxx8
1 files changed, 6 insertions, 2 deletions
diff --git a/vcl/source/window/settings.cxx b/vcl/source/window/settings.cxx
index 2fabec97ccb2..e89f1b6dcf1b 100644
--- a/vcl/source/window/settings.cxx
+++ b/vcl/source/window/settings.cxx
@@ -37,6 +37,8 @@
#include <window.h>
+namespace vcl {
+
void Window::SetSettings( const AllSettings& rSettings )
{
SetSettings( rSettings, false );
@@ -68,7 +70,7 @@ void Window::SetSettings( const AllSettings& rSettings, bool bChild )
if ( bChild || mpWindowImpl->mbChildNotify )
{
- Window* pChild = mpWindowImpl->mpFirstChild;
+ vcl::Window* pChild = mpWindowImpl->mpFirstChild;
while ( pChild )
{
pChild->SetSettings( rSettings, bChild );
@@ -136,7 +138,7 @@ void Window::UpdateSettings( const AllSettings& rSettings, bool bChild )
if ( bChild || mpWindowImpl->mbChildNotify )
{
- Window* pChild = mpWindowImpl->mpFirstChild;
+ vcl::Window* pChild = mpWindowImpl->mpFirstChild;
while ( pChild )
{
pChild->UpdateSettings( rSettings, bChild );
@@ -385,4 +387,6 @@ void Window::ImplUpdateGlobalSettings( AllSettings& rSettings, bool bCallHdl )
GetpApp()->OverrideSystemSettings( rSettings );
}
+} /*namespace vcl*/
+
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */