-rw-r--r-- | noncore/apps/tinykate/libkate/microkde/kcolorbtn.cpp | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/noncore/apps/tinykate/libkate/microkde/kcolorbtn.cpp b/noncore/apps/tinykate/libkate/microkde/kcolorbtn.cpp index 5d21f15..7be5af5 100644 --- a/noncore/apps/tinykate/libkate/microkde/kcolorbtn.cpp +++ b/noncore/apps/tinykate/libkate/microkde/kcolorbtn.cpp | |||
@@ -24,7 +24,9 @@ | |||
24 | #include <qapplication.h> | 24 | #include <qapplication.h> |
25 | #include <kglobalsettings.h> | 25 | #include <kglobalsettings.h> |
26 | #include "kcolordialog.h" | 26 | //#include "kcolordialog.h" |
27 | #include "kcolorbtn.h" | 27 | #include "kcolorbtn.h" |
28 | 28 | ||
29 | #include <opie/colordialog.h> | ||
30 | |||
29 | KColorButton::KColorButton( QWidget *parent, const char *name ) | 31 | KColorButton::KColorButton( QWidget *parent, const char *name ) |
30 | : QPushButton( parent, name ), dragFlag(false) | 32 | : QPushButton( parent, name ), dragFlag(false) |
@@ -35,5 +37,5 @@ KColorButton::KColorButton( QWidget *parent, const char *name ) | |||
35 | 37 | ||
36 | KColorButton::KColorButton( const QColor &c, QWidget *parent, | 38 | KColorButton::KColorButton( const QColor &c, QWidget *parent, |
37 | const char *name ) | 39 | const char *name ) |
38 | : QPushButton( parent, name ), col(c), dragFlag(false) | 40 | : QPushButton( parent, name ), col(c), dragFlag(false) |
39 | { | 41 | { |
@@ -74,11 +76,10 @@ void KColorButton::drawButtonLabel( QPainter *painter ) | |||
74 | void KColorButton::chooseColor() | 76 | void KColorButton::chooseColor() |
75 | { | 77 | { |
76 | if( KColorDialog::getColor( col) == QDialog::Rejected ) | 78 | QColor newCol=OColorDialog::getColor( col); |
79 | if( newCol != QDialog::Rejected ) | ||
77 | { | 80 | { |
78 | return; | 81 | col=newCol; |
79 | } | ||
80 | |||
81 | repaint( false ); | 82 | repaint( false ); |
82 | emit changed( col ); | 83 | emit changed( col ); |
84 | } | ||
83 | } | 85 | } |
84 | |||