diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2015-06-14 13:35:37 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-06-15 11:56:55 +0200 |
commit | 5a2e09989a4b9746a56f15fe7499067a4327fbae (patch) | |
tree | 846226a33613d2de8621717ced337328649d1155 /accessibility | |
parent | 7eac94da23f2f4460252eae5fa073fd1d833ba99 (diff) |
cppcheck:redundantCondition
Change-Id: Ib8b6342d1da526df6104125ded546b3f053c448b
Diffstat (limited to 'accessibility')
-rw-r--r-- | accessibility/source/standard/vclxaccessiblebox.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/accessibility/source/standard/vclxaccessiblebox.cxx b/accessibility/source/standard/vclxaccessiblebox.cxx index 1e801a86e8fb..a20bcf0c4ce9 100644 --- a/accessibility/source/standard/vclxaccessiblebox.cxx +++ b/accessibility/source/standard/vclxaccessiblebox.cxx @@ -182,7 +182,7 @@ void VCLXAccessibleBox::ProcessWindowEvent (const VclWindowEvent& rVclWindowEven sText = xText->getText(); pList->UpdateSelection_Acc(sText, m_bIsDropDownBox); #if defined WNT - if (m_bIsDropDownBox || ( !m_bIsDropDownBox && m_aBoxType==COMBOBOX)) + if (m_bIsDropDownBox || m_aBoxType==COMBOBOX) NotifyAccessibleEvent(AccessibleEventId::VALUE_CHANGED, Any(), Any()); #endif } |