diff options
Diffstat (limited to 'src/gui/editors/segment/ControlParameterItem.h')
-rw-r--r-- | src/gui/editors/segment/ControlParameterItem.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/gui/editors/segment/ControlParameterItem.h b/src/gui/editors/segment/ControlParameterItem.h index 6746ca2..7be91b3 100644 --- a/src/gui/editors/segment/ControlParameterItem.h +++ b/src/gui/editors/segment/ControlParameterItem.h @@ -26,7 +26,7 @@ #ifndef _RG_CONTROLPARAMETERITEM_H_ #define _RG_CONTROLPARAMETERITEM_H_ -#include <qstring.h> +#include <tqstring.h> #include <klistview.h> @@ -38,16 +38,16 @@ class ControlParameterItem : public KListViewItem { public: ControlParameterItem(int id, - QListView *parent, - QString str1, - QString str2, - QString str3, - QString str4, - QString str5, - QString str6, - QString str7, - QString str8, - QString str9): + TQListView *parent, + TQString str1, + TQString str2, + TQString str3, + TQString str4, + TQString str5, + TQString str6, + TQString str7, + TQString str8, + TQString str9): KListViewItem(parent, str1, str2, str3, str4, str5, str6, str7, str8), m_id(id) { setText(8, str9); } @@ -56,7 +56,7 @@ public: protected: int m_id; - QString m_string9; + TQString m_string9; }; |