re-fixed problem with saving OverwriteColors flag in exceptions

svn path=/trunk/KDE/kdebase/workspace/; revision=1019841
This commit is contained in:
Hugo Pereira Da Costa 2009-09-04 15:41:26 +00:00
parent ec7895d8e4
commit e641ec2cb9

View file

@ -151,7 +151,7 @@ namespace Nitrogen
gridLayout->addWidget( checkbox = new QCheckBox( i18n("Blend title bar colors with window content:" ), box ), 5, 0, 1, 1 );
gridLayout->addWidget( overwrite_colors_combobox_ = new ComboBox( box ), 5, 1, 1, 1 );
overwrite_colors_combobox_->setEnabled( false );
checkboxes_.insert( std::make_pair( NitrogenException::BlendColor, checkbox ) );
checkboxes_.insert( std::make_pair( NitrogenException::OverwriteColors, checkbox ) );
connect( checkbox, SIGNAL( toggled( bool ) ), overwrite_colors_combobox_, SLOT( setEnabled( bool ) ) );
}