summaryrefslogtreecommitdiff
path: root/basctl/source/basicide/bastypes.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'basctl/source/basicide/bastypes.cxx')
-rw-r--r--basctl/source/basicide/bastypes.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/basctl/source/basicide/bastypes.cxx b/basctl/source/basicide/bastypes.cxx
index 4d98fdee68f9..8ed33c36c22c 100644
--- a/basctl/source/basicide/bastypes.cxx
+++ b/basctl/source/basicide/bastypes.cxx
@@ -110,7 +110,7 @@ void BaseWindow::ExecuteGlobal (SfxRequest&)
bool BaseWindow::Notify( NotifyEvent& rNEvt )
{
- bool nDone = false;
+ bool bDone = false;
if ( rNEvt.GetType() == MouseNotifyEvent::KEYINPUT )
{
@@ -127,14 +127,14 @@ bool BaseWindow::Notify( NotifyEvent& rNEvt )
{
if (Shell* pShell = GetShell())
pShell->NextPage( nCode == KEY_PAGEUP );
- nDone = true;
+ bDone = true;
}
}
break;
}
}
- return nDone || Window::Notify( rNEvt );
+ return bDone || Window::Notify( rNEvt );
}