[Libreoffice-commits] core.git: vcl/source
Maxim Monastirsky
momonasmon at gmail.com
Wed Aug 19 08:13:55 PDT 2015
vcl/source/control/combobox.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 086fe6f1e87c575ad5480c4ee9676aa2af6d489d
Author: Maxim Monastirsky <momonasmon at gmail.com>
Date: Wed Aug 19 18:06:45 2015 +0300
tdf#93293 Fix inverted condition
Regression of ece8699f8f22f6bae137c601bc29b83b75dc3bf3
Change-Id: I1aac18dcb469b30de625c5cbfb5b0dd27fe33364
diff --git a/vcl/source/control/combobox.cxx b/vcl/source/control/combobox.cxx
index f7409eb..9473edc 100644
--- a/vcl/source/control/combobox.cxx
+++ b/vcl/source/control/combobox.cxx
@@ -889,7 +889,7 @@ void ComboBox::Modify()
void ComboBox::Impl::ImplUpdateFloatSelection()
{
- if (!m_pImplLB || m_pSubEdit)
+ if (!m_pImplLB || !m_pSubEdit)
return;
// move text in the ListBox into the visible region
More information about the Libreoffice-commits
mailing list