diff options
Diffstat (limited to 'vcl/source/window/menu.cxx')
-rw-r--r-- | vcl/source/window/menu.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/vcl/source/window/menu.cxx b/vcl/source/window/menu.cxx index 64fe254e929c..5fe08d186b06 100644 --- a/vcl/source/window/menu.cxx +++ b/vcl/source/window/menu.cxx @@ -3856,7 +3856,7 @@ static void ImplInitMenuWindow( Window* pWin, sal_Bool bFont, sal_Bool bMenuBar pWin->SetPointFont( rStyleSettings.GetMenuFont() ); if( bMenuBar ) { - const BitmapEx* pPersonaBitmap = rStyleSettings.GetPersonaHeader(); + const BitmapEx* pPersonaBitmap = Application::GetSettings().GetStyleSettings().GetPersonaHeader(); if ( pPersonaBitmap != NULL ) { Wallpaper aWallpaper( *pPersonaBitmap ); @@ -5503,7 +5503,7 @@ void MenuBarWindow::HighlightItem( sal_uInt16 nPos, sal_Bool bHighlight ) MenubarValue aControlValue; aControlValue.maTopDockingAreaHeight = ImplGetTopDockingAreaHeight( this ); - if ( GetSettings().GetStyleSettings().GetPersonaHeader() ) + if ( Application::GetSettings().GetStyleSettings().GetPersonaHeader() ) Erase(); else { @@ -5539,7 +5539,7 @@ void MenuBarWindow::HighlightItem( sal_uInt16 nPos, sal_Bool bHighlight ) MenubarValue aMenubarValue; aMenubarValue.maTopDockingAreaHeight = ImplGetTopDockingAreaHeight( this ); - if ( GetSettings().GetStyleSettings().GetPersonaHeader() ) + if ( Application::GetSettings().GetStyleSettings().GetPersonaHeader() ) Erase( aRect ); else { @@ -5775,7 +5775,7 @@ void MenuBarWindow::Paint( const Rectangle& ) MenubarValue aMenubarValue; aMenubarValue.maTopDockingAreaHeight = ImplGetTopDockingAreaHeight( this ); - if ( GetSettings().GetStyleSettings().GetPersonaHeader() ) + if ( Application::GetSettings().GetStyleSettings().GetPersonaHeader() ) Erase(); else { |