summaryrefslogtreecommitdiffstats
path: root/src/gui/newfiledlg.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/newfiledlg.h')
-rw-r--r--src/gui/newfiledlg.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/gui/newfiledlg.h b/src/gui/newfiledlg.h
index fc20800..28d3959 100644
--- a/src/gui/newfiledlg.h
+++ b/src/gui/newfiledlg.h
@@ -15,7 +15,7 @@
class MicroSelectWidget;
class NewFileWidget;
-class QIconViewItem;
+class TQIconViewItem;
/**
A standard dialog for getting file details from the user for a new project
@@ -25,8 +25,9 @@ A standard dialog for getting file details from the user for a new project
class NewFileDlg : public KDialogBase
{
Q_OBJECT
+ TQ_OBJECT
public:
- NewFileDlg( QWidget *parent );
+ NewFileDlg( TQWidget *tqparent );
void reject();
void accept();
@@ -35,21 +36,21 @@ class NewFileDlg : public KDialogBase
int fileType() const { return m_fileType; }
int codeType() const { return m_codeType; }
bool addToProject() const { return m_bAddToProject; }
- QString microID() const { return m_microID; }
+ TQString microID() const { return m_microID; }
MicroSelectWidget * microSelectWidget() const;
public slots:
- void fileTypeChanged( QIconViewItem *item );
+ void fileTypeChanged( TQIconViewItem *item );
protected:
bool m_bAccepted;
int m_fileType;
int m_codeType;
bool m_bAddToProject;
- QString m_microID;
+ TQString m_microID;
NewFileWidget * m_pNewFileWidget;
- QWidget * m_pMainParent;
+ TQWidget * m_pMainParent;
};
#endif