summaryrefslogtreecommitdiff
path: root/svx/source/form/formcontroller.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-04-05 13:13:08 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-04-05 13:13:08 +0200
commit4b4c9184279c2cb5998348b09e084b295de1c8aa (patch)
tree8e9b4a4c910950b4d88ddcbd26229be90d2cfa88 /svx/source/form/formcontroller.cxx
parent0161f713c722392796347cf12d94423e218bdc4c (diff)
loplugin:salbool
Change-Id: I6c1910aeb2866d9646f1ea8e53dbd7a8a351a49d
Diffstat (limited to 'svx/source/form/formcontroller.cxx')
-rw-r--r--svx/source/form/formcontroller.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/form/formcontroller.cxx b/svx/source/form/formcontroller.cxx
index b3a7843b004b..3e1bcb328a18 100644
--- a/svx/source/form/formcontroller.cxx
+++ b/svx/source/form/formcontroller.cxx
@@ -1655,7 +1655,7 @@ void FormController::focusGained(const FocusEvent& e) throw( RuntimeException, s
// check the old control if the content is ok
#if OSL_DEBUG_LEVEL > 0
Reference< XBoundControl > xLockingTest(m_xCurrentControl, UNO_QUERY);
- sal_Bool bControlIsLocked = xLockingTest.is() && xLockingTest->getLock();
+ bool bControlIsLocked = xLockingTest.is() && xLockingTest->getLock();
assert(!bControlIsLocked && "FormController::Gained: I'm modified and the current control is locked ? How this ?");
// normalerweise sollte ein gelocktes Control nicht modified sein, also muss wohl mein bModified aus einem anderen Kontext
// gesetzt worden sein, was ich nicht verstehen wuerde ...