diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:43:15 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:43:15 +0000 |
commit | e654398e46e37abf457b2b1122ab898d2c51c49f (patch) | |
tree | d39ee6440f3c3663c3ead84a2d4cc2d034667e96 /kaudiocreator/jobqueimp.h | |
parent | e4f29b18e19394b9352f52a6c0d0d0e3932cf511 (diff) | |
download | tdemultimedia-e654398e46e37abf457b2b1122ab898d2c51c49f.tar.gz tdemultimedia-e654398e46e37abf457b2b1122ab898d2c51c49f.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdemultimedia@1157644 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kaudiocreator/jobqueimp.h')
-rw-r--r-- | kaudiocreator/jobqueimp.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kaudiocreator/jobqueimp.h b/kaudiocreator/jobqueimp.h index 2287cf37..ef5de4b3 100644 --- a/kaudiocreator/jobqueimp.h +++ b/kaudiocreator/jobqueimp.h @@ -22,8 +22,8 @@ #define JOBQUEIMP_H #include "jobque.h" -#include <qstring.h> -#include <qlistview.h> +#include <tqstring.h> +#include <tqlistview.h> class Job; class QPainter; @@ -33,11 +33,11 @@ class QListView; /** * Helper class to allow for progress bars in list view items. */ -class QueListViewItem : public QListViewItem { +class QueListViewItem : public TQListViewItem { public: - QueListViewItem (QListView * p = NULL, const QString a=0, const QString b=0, const QString c=0, const QString d=0, const QString e=0); - virtual void paintCell (QPainter * p,const QColorGroup &cg,int column, + QueListViewItem (TQListView * p = NULL, const TQString a=0, const TQString b=0, const TQString c=0, const TQString d=0, const TQString e=0); + virtual void paintCell (TQPainter * p,const TQColorGroup &cg,int column, int width,int align); double percentDone; // Has the percentDone gone beyond 0 @@ -54,12 +54,12 @@ signals: void removeJob( int idNumber ); public: - JobQueImp( QWidget* parent = 0, const char* name = 0 ); + JobQueImp( TQWidget* parent = 0, const char* name = 0 ); int numberOfJobsNotFinished(); public slots: void updateProgress( int id, int progress ); - void addJob( Job* job, const QString &name ); + void addJob( Job* job, const TQString &name ); // Toolbar Button void clearDoneJobs(); @@ -70,7 +70,7 @@ private slots: private: bool removeJob( QueListViewItem *item, bool kill=true, bool prompt=true ); - QString getStringFromNumber( int number ); + TQString getStringFromNumber( int number ); int highestNumber; int currentId; |