summaryrefslogtreecommitdiff
path: root/extensions/source/bibliography/bibcont.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/source/bibliography/bibcont.cxx')
-rw-r--r--extensions/source/bibliography/bibcont.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/extensions/source/bibliography/bibcont.cxx b/extensions/source/bibliography/bibcont.cxx
index bd1a0693f52b..6666fef2d626 100644
--- a/extensions/source/bibliography/bibcont.cxx
+++ b/extensions/source/bibliography/bibcont.cxx
@@ -216,7 +216,7 @@ void BibBookContainer::GetFocus()
bool BibBookContainer::PreNotify( NotifyEvent& rNEvt )
{
- bool nHandled = false;
+ bool bHandled = false;
if( MouseNotifyEvent::KEYINPUT == rNEvt.GetType() )
{
const KeyEvent* pKEvt = rNEvt.GetKeyEvent();
@@ -239,14 +239,14 @@ bool BibBookContainer::PreNotify( NotifyEvent& rNEvt )
SetItemSize( nFirstWinId, nHeight );
SetItemSize( nSecondWinId, 100 - nHeight );
}
- nHandled = true;
+ bHandled = true;
}
else if( pKEvt->GetCharCode() && HandleShortCutKey( *pKEvt ) )
- nHandled = true;
+ bHandled = true;
}
}
- return nHandled;
+ return bHandled;
}
bool BibBookContainer::HandleShortCutKey( const KeyEvent& rKeyEvent )