author | zautrix <zautrix> | 2005-02-07 13:03:38 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-02-07 13:03:38 (UTC) |
commit | 7de846e9f01ce27b622541493e6a02e26e37bf2c (patch) (side-by-side diff) | |
tree | df59c7803b1e171b08d3c387f49b1239d1adc3b5 /libkdepim | |
parent | afc19166fcdc09d3d5b757a84abfeb0b2746f35f (diff) | |
download | kdepimpi-7de846e9f01ce27b622541493e6a02e26e37bf2c.zip kdepimpi-7de846e9f01ce27b622541493e6a02e26e37bf2c.tar.gz kdepimpi-7de846e9f01ce27b622541493e6a02e26e37bf2c.tar.bz2 |
fixxxx
-rw-r--r-- | libkdepim/categoryselectdialog.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libkdepim/categoryselectdialog.cpp b/libkdepim/categoryselectdialog.cpp index 8b2bc4e..8038934 100644 --- a/libkdepim/categoryselectdialog.cpp +++ b/libkdepim/categoryselectdialog.cpp @@ -142,7 +142,6 @@ void CategorySelectDialog::clicked ( QListViewItem * it ) if ( ! it ) return; QCheckListItem *i = (QCheckListItem *) it; - qDebug("click %d ", i->isOn()); if ( !i->isOn() && i==mColorItem) { setColorItem( 0); QCheckListItem *item = (QCheckListItem *)mCategories->firstChild(); @@ -169,7 +168,7 @@ void CategorySelectDialog::setColorItem( QCheckListItem * newColorItem ) } if ( newColorItem ) { QPixmap pix (newColorItem->height()/2, newColorItem->height()/2 ); - pix.fill(Qt::blue ); + pix.fill(Qt::red ); newColorItem->setPixmap ( 0, pix ); mColorItem = newColorItem; } |