diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
commit | 7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch) | |
tree | 8474f9b444b2756228600050f07a7ff25de532b2 /karm/taskviewwhatsthis.cpp | |
parent | f587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff) | |
download | tdepim-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 'karm/taskviewwhatsthis.cpp')
-rw-r--r-- | karm/taskviewwhatsthis.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/karm/taskviewwhatsthis.cpp b/karm/taskviewwhatsthis.cpp index 9beb163df..72d640e9d 100644 --- a/karm/taskviewwhatsthis.cpp +++ b/karm/taskviewwhatsthis.cpp @@ -2,7 +2,7 @@ // C++ Implementation: taskviewwhatsthis // // Description: -// This is a subclass of QWhatsThis, specially adapted for karm's taskview. +// This is a subclass of TQWhatsThis, specially adapted for karm's taskview. // // Author: Thorsten Staerk <thorsten@staerk.de>, (C) 2005 // @@ -14,8 +14,8 @@ #include <klistview.h> #include <klocale.h> -TaskViewWhatsThis::TaskViewWhatsThis( QWidget* qw ) - : QWhatsThis( qw ) +TaskViewWhatsThis::TaskViewWhatsThis( TQWidget* qw ) + : TQWhatsThis( qw ) { _listView=(KListView *) qw; } @@ -24,9 +24,9 @@ TaskViewWhatsThis::~TaskViewWhatsThis() { } -QString TaskViewWhatsThis::text ( const QPoint & pos ) +TQString TaskViewWhatsThis::text ( const TQPoint & pos ) { - QString desc = QString::null; + TQString desc = TQString::null; kdDebug(5970) << "entering TaskViewWhatsThis::text" << endl; kdDebug(5970) << "x-pos:" << pos.x() << endl; if ( pos.x() < _listView->columnWidth( 0 ) ) |