summaryrefslogtreecommitdiff
path: root/noncore
Unidiff
Diffstat (limited to 'noncore') (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/tinykate/libkate/microkde/kcolorbtn.cpp13
1 files changed, 7 insertions, 6 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
@@ -20,15 +20,17 @@
20 20
21#include <qdialog.h> 21#include <qdialog.h>
22#include <qpainter.h> 22#include <qpainter.h>
23#include <qdrawutil.h> 23#include <qdrawutil.h>
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
29KColorButton::KColorButton( QWidget *parent, const char *name ) 31KColorButton::KColorButton( QWidget *parent, const char *name )
30 : QPushButton( parent, name ), dragFlag(false) 32 : QPushButton( parent, name ), dragFlag(false)
31{ 33{
32 // 2000-10-15 (putzer): fixes broken keyboard usage 34 // 2000-10-15 (putzer): fixes broken keyboard usage
33 connect (this, SIGNAL(clicked()), this, SLOT(chooseColor())); 35 connect (this, SIGNAL(clicked()), this, SLOT(chooseColor()));
34} 36}
@@ -70,15 +72,14 @@ void KColorButton::drawButtonLabel( QPainter *painter )
70 painter->fillRect( l+b, t+b, w-b*2, h-b*2, fillCol ); 72 painter->fillRect( l+b, t+b, w-b*2, h-b*2, fillCol );
71 } 73 }
72} 74}
73 75
74void KColorButton::chooseColor() 76void 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 );
83} 84}
84 85}