summaryrefslogtreecommitdiff
path: root/sd/source/ui/view/sdwindow.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/view/sdwindow.cxx')
-rw-r--r--sd/source/ui/view/sdwindow.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sd/source/ui/view/sdwindow.cxx b/sd/source/ui/view/sdwindow.cxx
index a4fdbd28a687..a9a4bd035e81 100644
--- a/sd/source/ui/view/sdwindow.cxx
+++ b/sd/source/ui/view/sdwindow.cxx
@@ -268,15 +268,15 @@ void Window::Command(const CommandEvent& rCEvt)
bool Window::Notify( NotifyEvent& rNEvt )
{
- bool nResult = false;
+ bool bResult = false;
if ( mpViewShell )
{
- nResult = mpViewShell->Notify(rNEvt, this);
+ bResult = mpViewShell->Notify(rNEvt, this);
}
- if( !nResult )
- nResult = vcl::Window::Notify( rNEvt );
+ if( !bResult )
+ bResult = vcl::Window::Notify( rNEvt );
- return nResult;
+ return bResult;
}
void Window::RequestHelp(const HelpEvent& rEvt)