summaryrefslogtreecommitdiffstats
path: root/extensions/source/propctrlr/standardcontrol.cxx
diff options
context:
space:
mode:
authorStefan Heinemann <stefan.heinemann@codedump.ch>2015-09-25 13:06:09 +0200
committerMichael Stahl <mstahl@redhat.com>2015-09-29 18:33:40 +0000
commitc50eb68af3096645246a77259bb3d1cc70eb6b63 (patch)
treea3f9442fa2d2c13464d1623f8bcf772b27426e72 /extensions/source/propctrlr/standardcontrol.cxx
parentJewish Calendar: updated URL of borrowed code (diff)
downloadcore-c50eb68af3096645246a77259bb3d1cc70eb6b63.tar.gz
core-c50eb68af3096645246a77259bb3d1cc70eb6b63.zip
Renamed wrongly prefixed boolean variables
Fixed tdf#94269 Change-Id: I63109cc4e095bad680d7637a065080ea368860ae Reviewed-on: https://gerrit.libreoffice.org/18851 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'extensions/source/propctrlr/standardcontrol.cxx')
-rw-r--r--extensions/source/propctrlr/standardcontrol.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/extensions/source/propctrlr/standardcontrol.cxx b/extensions/source/propctrlr/standardcontrol.cxx
index 3d1c199a4b07..3018c48ef5b0 100644
--- a/extensions/source/propctrlr/standardcontrol.cxx
+++ b/extensions/source/propctrlr/standardcontrol.cxx
@@ -999,7 +999,7 @@ namespace pcr
bool OMultilineFloatingEdit::PreNotify(NotifyEvent& _rNEvt)
{
- bool nResult = true;
+ bool bResult = true;
MouseNotifyEvent nSwitch = _rNEvt.GetType();
if (MouseNotifyEvent::KEYINPUT == nSwitch)
@@ -1018,12 +1018,12 @@ namespace pcr
EndPopupMode();
}
else
- nResult=FloatingWindow::PreNotify(_rNEvt);
+ bResult=FloatingWindow::PreNotify(_rNEvt);
}
else
- nResult=FloatingWindow::PreNotify(_rNEvt);
+ bResult=FloatingWindow::PreNotify(_rNEvt);
- return nResult;
+ return bResult;
}
@@ -1101,7 +1101,7 @@ namespace pcr
bool DropDownEditControl::PreNotify( NotifyEvent& rNEvt )
{
- bool nResult = true;
+ bool bResult = true;
if (rNEvt.GetType() == MouseNotifyEvent::KEYINPUT)
{
@@ -1127,7 +1127,7 @@ namespace pcr
|| m_nOperationMode == eMultiLineText
)
{
- nResult = DropDownEditControl_Base::PreNotify( rNEvt );
+ bResult = DropDownEditControl_Base::PreNotify( rNEvt );
}
else if ( m_nOperationMode == eStringList )
{
@@ -1151,9 +1151,9 @@ namespace pcr
}
}
else
- nResult = DropDownEditControl_Base::PreNotify(rNEvt);
+ bResult = DropDownEditControl_Base::PreNotify(rNEvt);
- return nResult;
+ return bResult;
}