summaryrefslogtreecommitdiff
path: root/sd/source/ui/dlg/navigatr.cxx
diff options
context:
space:
mode:
authorChris Sherlock <chris.sherlock79@gmail.com>2016-02-04 00:23:52 +1100
committerChris Sherlock <chris.sherlock79@gmail.com>2016-02-04 00:24:51 +1100
commit8db902785ed40ef388218bd5068f14f5d4bedd69 (patch)
tree08a02ad07d02fce16bd37b6c02503239483911c9 /sd/source/ui/dlg/navigatr.cxx
parent4a2824e72aae407f5f2a86e6ef45278ef864d437 (diff)
tdf#94269 Replace "n" prefix for bool variables with "b"
Change-Id: I8999dc2701010424ea4d2504e99ed429030d7d4e
Diffstat (limited to 'sd/source/ui/dlg/navigatr.cxx')
-rw-r--r--sd/source/ui/dlg/navigatr.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sd/source/ui/dlg/navigatr.cxx b/sd/source/ui/dlg/navigatr.cxx
index 18eeb10953d6..32098f7c57e6 100644
--- a/sd/source/ui/dlg/navigatr.cxx
+++ b/sd/source/ui/dlg/navigatr.cxx
@@ -764,7 +764,7 @@ NavDocInfo* SdNavigatorWin::GetDocInfo()
bool SdNavigatorWin::Notify(NotifyEvent& rNEvt)
{
const KeyEvent* pKEvt = rNEvt.GetKeyEvent();
- bool nOK = false;
+ bool bOK = false;
if( pKEvt )
{
@@ -773,7 +773,7 @@ bool SdNavigatorWin::Notify(NotifyEvent& rNEvt)
if( SdPageObjsTLB::IsInDrag() )
{
// during drag'n'drop we just stop the drag but do not close the navigator
- nOK = true;
+ bOK = true;
}
else
{
@@ -791,10 +791,10 @@ bool SdNavigatorWin::Notify(NotifyEvent& rNEvt)
}
}
- if( !nOK )
- nOK = Window::Notify( rNEvt );
+ if( !bOK )
+ bOK = Window::Notify( rNEvt );
- return nOK;
+ return bOK;
}
/**