diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-11-05 20:28:27 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-11-07 21:04:50 +0000 |
commit | 64a708cba9b954afe3331f63c58218eb53b3d0ce (patch) | |
tree | ddc1bea3b63f32a1c6d377c1d1dd7aee0803fb70 /sfx2 | |
parent | f01c49c4a89ecad2376fd0023625186e5cac642e (diff) |
Revert "Reverts a commit series that cripple windows ci."
with addition of...
- svxlo-SvxColorListBox
+ svxcorelo-SvxColorListBox
This reverts commit db380aab1063e8a5e40111c40ee9f7921aa82601.
Change-Id: I3af7aa0abb1a430bce64188244404fcbd480b128
Reviewed-on: https://gerrit.libreoffice.org/30598
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/dialog/itemconnect.cxx | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/sfx2/source/dialog/itemconnect.cxx b/sfx2/source/dialog/itemconnect.cxx index f07e55131814..e793ef7879ce 100644 --- a/sfx2/source/dialog/itemconnect.cxx +++ b/sfx2/source/dialog/itemconnect.cxx @@ -129,34 +129,6 @@ void CheckBoxWrapper::SetControlValue( bool bValue ) } -ColorListBoxWrapper::ColorListBoxWrapper(ColorListBox & rListBox): - SingleControlWrapper< ColorListBox, Color >(rListBox) -{} - -ColorListBoxWrapper::~ColorListBoxWrapper() -{} - -bool ColorListBoxWrapper::IsControlDontKnow() const -{ - return GetControl().GetSelectEntryCount() == 0; -} - -void ColorListBoxWrapper::SetControlDontKnow( bool bSet ) -{ - if( bSet ) GetControl().SetNoSelection(); -} - -Color ColorListBoxWrapper::GetControlValue() const -{ - return GetControl().GetSelectEntryColor(); -} - -void ColorListBoxWrapper::SetControlValue( Color aColor ) -{ - GetControl().SelectEntry( aColor ); -} - - // Multi control wrappers |