summaryrefslogtreecommitdiff
path: root/fpicker/source/office/iodlg.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'fpicker/source/office/iodlg.cxx')
-rw-r--r--fpicker/source/office/iodlg.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/fpicker/source/office/iodlg.cxx b/fpicker/source/office/iodlg.cxx
index 0f850eabb3f2..d2714b466ce1 100644
--- a/fpicker/source/office/iodlg.cxx
+++ b/fpicker/source/office/iodlg.cxx
@@ -1671,7 +1671,7 @@ bool SvtFileDialog::Notify( NotifyEvent& rNEvt )
{
MouseNotifyEvent nType = rNEvt.GetType();
- bool nRet = false;
+ bool bRet = false;
if ( MouseNotifyEvent::KEYINPUT == nType && rNEvt.GetKeyEvent() )
{
@@ -1681,16 +1681,16 @@ bool SvtFileDialog::Notify( NotifyEvent& rNEvt )
if ( !rKeyCode.GetModifier() &&
KEY_BACKSPACE == nCode && !_pImp->_pEdFileName->HasChildPathFocus() )
{
- nRet = false;
+ bRet = false;
- if ( !nRet && _pImp->_pBtnUp->IsEnabled() )
+ if ( !bRet && _pImp->_pBtnUp->IsEnabled() )
{
PrevLevel_Impl();
- nRet = true;
+ bRet = true;
}
}
}
- return nRet || ModalDialog::Notify( rNEvt );
+ return bRet || ModalDialog::Notify( rNEvt );
}