From c50eb68af3096645246a77259bb3d1cc70eb6b63 Mon Sep 17 00:00:00 2001 From: Stefan Heinemann Date: Fri, 25 Sep 2015 13:06:09 +0200 Subject: Renamed wrongly prefixed boolean variables Fixed tdf#94269 Change-Id: I63109cc4e095bad680d7637a065080ea368860ae Reviewed-on: https://gerrit.libreoffice.org/18851 Reviewed-by: Michael Stahl Tested-by: Michael Stahl --- fpicker/source/office/iodlg.cxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'fpicker') 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 ); } -- cgit