summaryrefslogtreecommitdiff
path: root/svx/source/form/datanavi.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/form/datanavi.cxx')
-rw-r--r--svx/source/form/datanavi.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/form/datanavi.cxx b/svx/source/form/datanavi.cxx
index a49e23b1dcf2..e8cdd5cf0c4a 100644
--- a/svx/source/form/datanavi.cxx
+++ b/svx/source/form/datanavi.cxx
@@ -1030,7 +1030,7 @@ namespace svxform
bool XFormsPage::Notify( NotifyEvent& rNEvt )
{
- bool nHandled = false;
+ bool bHandled = false;
if ( rNEvt.GetType() == MouseNotifyEvent::KEYINPUT )
{
@@ -1039,12 +1039,12 @@ namespace svxform
switch ( nCode )
{
case KEY_DELETE:
- nHandled = DoMenuAction( m_nRemoveId );
+ bHandled = DoMenuAction( m_nRemoveId );
break;
}
}
- return nHandled || Window::Notify( rNEvt );
+ return bHandled || Window::Notify( rNEvt );
}
void XFormsPage::Resize()