diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2015-12-09 22:14:21 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-12-23 16:16:00 +0000 |
commit | dc66e55c53d55a91fffa7591fec96cb9578e71e3 (patch) | |
tree | 0061649c8e8832b74db1f3951455276b851ed00e | |
parent | be005a7a4ec5934372d4b13b96b22d2c8659ed95 (diff) |
tdf#96368: Address book wizard with no selection returns Evolution
Don't select an option which is not even visible
Change-Id: I003c835d7d623e559d67098de48efdf057a64422
Reviewed-on: https://gerrit.libreoffice.org/20552
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
(cherry picked from commit 7b69dd64be71d1420158a553fb5ec861039cb017)
Reviewed-on: https://gerrit.libreoffice.org/20558
Tested-by: Julien Nabet <serval2412@yahoo.fr>
(cherry picked from commit 6158def661f8281c4fc3493c7e2a1753d3891437)
Reviewed-on: https://gerrit.libreoffice.org/20559
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r-- | extensions/source/abpilot/typeselectionpage.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/source/abpilot/typeselectionpage.cxx b/extensions/source/abpilot/typeselectionpage.cxx index 90bdf31a0ce7..cfc9464469d1 100644 --- a/extensions/source/abpilot/typeselectionpage.cxx +++ b/extensions/source/abpilot/typeselectionpage.cxx @@ -219,7 +219,7 @@ namespace abp loop != m_aAllTypes.end(); ++loop ) { ButtonItem aItem = (*loop); - if ( aItem.m_pItem->IsChecked() ) + if ( aItem.m_pItem->IsChecked() && aItem.m_bVisible ) return aItem.m_eType; } |