summaryrefslogtreecommitdiff
path: root/vcl/source/window/floatwin.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/window/floatwin.cxx')
-rw-r--r--vcl/source/window/floatwin.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/source/window/floatwin.cxx b/vcl/source/window/floatwin.cxx
index 46353c822b9d..80c8f0c971c0 100644
--- a/vcl/source/window/floatwin.cxx
+++ b/vcl/source/window/floatwin.cxx
@@ -551,8 +551,8 @@ IMPL_LINK_NOARG_TYPED(FloatingWindow, ImplEndPopupModeHdl, void*, void)
bool FloatingWindow::Notify( NotifyEvent& rNEvt )
{
// call Base Class first for tab control
- bool nRet = SystemWindow::Notify( rNEvt );
- if ( !nRet )
+ bool bRet = SystemWindow::Notify( rNEvt );
+ if ( !bRet )
{
if ( rNEvt.GetType() == MouseNotifyEvent::KEYINPUT )
{
@@ -568,7 +568,7 @@ bool FloatingWindow::Notify( NotifyEvent& rNEvt )
}
}
- return nRet;
+ return bRet;
}
void FloatingWindow::StateChanged( StateChangedType nType )