summaryrefslogtreecommitdiff
path: root/vcl/source/control
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-12-04 13:45:00 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-12-04 13:45:00 +0100
commitf0609851293512b9f8c3f6f06e54bf67679a508d (patch)
tree22a5a25c07fd889962ee3489ff8f885d77ce51db /vcl/source/control
parente5cd9ee78b36a0f23e2b85b01ceb8899fe11c0fc (diff)
loplugin:implicitboolconversion
Change-Id: I1a2ce5fe9034c67de9553fe8953e7de0fcc6b471
Diffstat (limited to 'vcl/source/control')
-rw-r--r--vcl/source/control/combobox.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/control/combobox.cxx b/vcl/source/control/combobox.cxx
index fca17160338a..462c61fe3fc8 100644
--- a/vcl/source/control/combobox.cxx
+++ b/vcl/source/control/combobox.cxx
@@ -866,7 +866,7 @@ sal_Int32 ComboBox::InsertEntry(const OUString& rStr, sal_Int32 const nPos)
sal_Int32 ComboBox::InsertEntryWithImage(
const OUString& rStr, const Image& rImage, sal_Int32 const nPos)
{
- assert(nPos >= 0 & COMBOBOX_MAX_ENTRIES > mpImplLB->GetEntryList()->GetEntryCount());
+ assert(nPos >= 0 && COMBOBOX_MAX_ENTRIES > mpImplLB->GetEntryList()->GetEntryCount());
sal_Int32 nRealPos;
if (nPos == COMBOBOX_APPEND)