summaryrefslogtreecommitdiffstats
path: root/korn/label.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
commit7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch)
tree8474f9b444b2756228600050f07a7ff25de532b2 /korn/label.h
parentf587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff)
downloadtdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.tar.gz
tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'korn/label.h')
-rw-r--r--korn/label.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/korn/label.h b/korn/label.h
index d3c87ae9..18d4cb29 100644
--- a/korn/label.h
+++ b/korn/label.h
@@ -19,20 +19,20 @@
#ifndef MK_LABEL_H
#define MK_LABEL_H
-#include <qlabel.h>
-#include <qevent.h>
+#include <tqlabel.h>
+#include <tqevent.h>
/**
- * A simple overriding of the QLabel class to get a mouseButtonPressed() signal
+ * A simple overriding of the TQLabel class to get a mouseButtonPressed() signal
*/
class Label : public QLabel
{ Q_OBJECT
public:
- Label( QWidget * parent = 0, const char * name = 0 ) : QLabel( parent, name ) {}
+ Label( TQWidget * parent = 0, const char * name = 0 ) : TQLabel( parent, name ) {}
virtual ~Label() {}
protected:
- virtual void mousePressEvent( QMouseEvent *e ) { emit mouseButtonPressed( e->button() ); }
+ virtual void mousePressEvent( TQMouseEvent *e ) { emit mouseButtonPressed( e->button() ); }
signals:
/**
* Emitted when a button is pressed.