diff options
Diffstat (limited to 'parts/appwizard/importdlg.h')
-rw-r--r-- | parts/appwizard/importdlg.h | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/parts/appwizard/importdlg.h b/parts/appwizard/importdlg.h index daa136b6..35772133 100644 --- a/parts/appwizard/importdlg.h +++ b/parts/appwizard/importdlg.h @@ -13,16 +13,16 @@ #define _IMPORTDLG_H_ #include "importdlgbase.h" -#include <qstringlist.h> +#include <tqstringlist.h> class AppWizardPart; struct InfrastructureCmd{ bool isOn; - QString comment; - QString command; - QString existingPattern; + TQString comment; + TQString command; + TQString existingPattern; }; class ImportDialog : public ImportDialogBase @@ -30,7 +30,7 @@ class ImportDialog : public ImportDialogBase Q_OBJECT public: - ImportDialog( AppWizardPart *part, QWidget *parent=0, const char *name=0 ); + ImportDialog( AppWizardPart *part, TQWidget *parent=0, const char *name=0 ); ~ImportDialog(); protected: @@ -38,27 +38,27 @@ protected: protected slots: virtual void dirChanged(); - virtual void projectTypeChanged(const QString &type); + virtual void projectTypeChanged(const TQString &type); virtual void projectTypeChanged(int type); private slots: -// void slotFinishedCheckout( QString destinationDir ); +// void slotFinishedCheckout( TQString destinationDir ); // void slotFetchModulesFromRepository(); - void slotProjectNameChanged( const QString &_text ); + void slotProjectNameChanged( const TQString &_text ); private: // void scanAvailableVCS(); - void scanLegacyKDevelopProject(const QString &fileName); - void scanLegacyStudioProject(const QString &fileName); - void scanAutomakeProject(const QString &dirName); - void setProjectType(const QString &type); + void scanLegacyKDevelopProject(const TQString &fileName); + void scanLegacyStudioProject(const TQString &fileName); + void scanAutomakeProject(const TQString &dirName); + void setProjectType(const TQString &type); void createProjectInfrastructure(); - QStringList importNames; + TQStringList importNames; AppWizardPart *m_part; - QString projectVersion; + TQString projectVersion; - QMap<QString, InfrastructureCmd> m_infrastructure; + TQMap<TQString, InfrastructureCmd> m_infrastructure; }; #endif |