summaryrefslogtreecommitdiffstats
path: root/kplato/kptrelationdialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'kplato/kptrelationdialog.h')
-rw-r--r--kplato/kptrelationdialog.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/kplato/kptrelationdialog.h b/kplato/kptrelationdialog.h
index 22cebde04..6abeb3d07 100644
--- a/kplato/kptrelationdialog.h
+++ b/kplato/kptrelationdialog.h
@@ -23,7 +23,7 @@
#include <kdialogbase.h>
-class QButtonGroup;
+class TQButtonGroup;
class KCommand;
namespace KPlato
@@ -40,8 +40,9 @@ class ModifyRelationTypeCmd;
class AddRelationDialog : public KDialogBase
{
Q_OBJECT
+ TQ_OBJECT
public:
- AddRelationDialog(Relation *rel, QWidget *p, QString caption=QString::null, int buttons=Ok|Cancel, const char *n=0);
+ AddRelationDialog(Relation *rel, TQWidget *p, TQString caption=TQString(), int buttons=Ok|Cancel, const char *n=0);
virtual KCommand *buildCommand(Part *part);
@@ -52,7 +53,7 @@ protected slots:
protected:
RelationPanel *m_panel;
- QButtonGroup *relationType;
+ TQButtonGroup *relationType;
Relation *m_relation;
DurationWidget *m_lag;
};
@@ -61,8 +62,9 @@ protected:
class ModifyRelationDialog : public AddRelationDialog
{
Q_OBJECT
+ TQ_OBJECT
public:
- ModifyRelationDialog(Relation *rel, QWidget *p=0, const char *n=0);
+ ModifyRelationDialog(Relation *rel, TQWidget *p=0, const char *n=0);
virtual KCommand *buildCommand(Part *part);
bool relationIsDeleted() { return m_deleted; }