summaryrefslogtreecommitdiff
path: root/sc/source/ui/navipi/navipi.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/ui/navipi/navipi.cxx')
-rw-r--r--sc/source/ui/navipi/navipi.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sc/source/ui/navipi/navipi.cxx b/sc/source/ui/navipi/navipi.cxx
index 6618057df009..f25e85b15d2e 100644
--- a/sc/source/ui/navipi/navipi.cxx
+++ b/sc/source/ui/navipi/navipi.cxx
@@ -90,7 +90,7 @@ ColumnEdit::~ColumnEdit()
bool ColumnEdit::Notify( NotifyEvent& rNEvt )
{
- bool nHandled = SpinField::Notify( rNEvt );
+ bool bHandled = SpinField::Notify( rNEvt );
MouseNotifyEvent nType = rNEvt.GetType();
if ( nType == MouseNotifyEvent::KEYINPUT )
@@ -108,14 +108,14 @@ bool ColumnEdit::Notify( NotifyEvent& rNEvt )
{
ScNavigatorDlg::ReleaseFocus();
ExecuteCol();
- nHandled = true;
+ bHandled = true;
}
}
}
else if ( nType == MouseNotifyEvent::LOSEFOCUS ) // LoseFocus not called at VCL
EvalText(); // nCol set
- return nHandled;
+ return bHandled;
}
void ColumnEdit::LoseFocus()
@@ -262,7 +262,7 @@ RowEdit::~RowEdit()
bool RowEdit::Notify( NotifyEvent& rNEvt )
{
- bool nHandled = NumericField::Notify( rNEvt );
+ bool bHandled = NumericField::Notify( rNEvt );
if ( rNEvt.GetType() == MouseNotifyEvent::KEYINPUT )
{
@@ -272,11 +272,11 @@ bool RowEdit::Notify( NotifyEvent& rNEvt )
{
ScNavigatorDlg::ReleaseFocus();
ExecuteRow();
- nHandled = true;
+ bHandled = true;
}
}
- return nHandled;
+ return bHandled;
}
void RowEdit::LoseFocus()