diff options
Diffstat (limited to 'parts/appwizard/appwizardpart.cpp')
-rw-r--r-- | parts/appwizard/appwizardpart.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/parts/appwizard/appwizardpart.cpp b/parts/appwizard/appwizardpart.cpp index 8a19f548..6b57b320 100644 --- a/parts/appwizard/appwizardpart.cpp +++ b/parts/appwizard/appwizardpart.cpp @@ -9,9 +9,9 @@ * * ***************************************************************************/ -#include <qdir.h> -#include <qwidget.h> -#include <qtimer.h> +#include <tqdir.h> +#include <tqwidget.h> +#include <tqtimer.h> #include "appwizardpart.h" @@ -23,7 +23,7 @@ #include <kgenericfactory.h> #include <kstandarddirs.h> #include <kaction.h> -#include <qmessagebox.h> +#include <tqmessagebox.h> #include "importdlg.h" #include "appwizarddlg.h" @@ -34,7 +34,7 @@ #include <kdevcore.h> #include <codemodel.h> -AppWizardPart::AppWizardPart(QObject *parent, const char *name, const QStringList &) +AppWizardPart::AppWizardPart(TQObject *parent, const char *name, const TQStringList &) : KDevPlugin(AppWizardFactory::info(), parent, name ? name : "AppWizardPart") { setInstance(AppWizardFactory::instance()); @@ -43,7 +43,7 @@ AppWizardPart::AppWizardPart(QObject *parent, const char *name, const QStringLis KAction *action; action = new KAction( i18n("&New Project..."), "window_new", 0, - this, SLOT(slotNewProject()), + this, TQT_SLOT(slotNewProject()), actionCollection(), "project_new" ); action->setToolTip( i18n("Generate a new project from a template") ); action->setWhatsThis( i18n("<b>New project</b><p>" @@ -52,7 +52,7 @@ AppWizardPart::AppWizardPart(QObject *parent, const char *name, const QStringLis "application from a set of templates.") ); action = new KAction( i18n("&Import Existing Project..."),"wizard", 0, - this, SLOT(slotImportProject()), + this, TQT_SLOT(slotImportProject()), actionCollection(), "project_import" ); action->setToolTip( i18n("Import existing project") ); action->setWhatsThis( i18n("<b>Import existing project</b><p>Creates a project file for a given directory.") ); @@ -82,7 +82,7 @@ void AppWizardPart::slotImportProject() void AppWizardPart::openFilesAfterGeneration(const KURL::List urlsToOpen) { m_urlsToOpen = urlsToOpen; - connect( core(), SIGNAL( projectOpened() ), this, SLOT( openFilesAfterGeneration() ) ); + connect( core(), TQT_SIGNAL( projectOpened() ), this, TQT_SLOT( openFilesAfterGeneration() ) ); } void AppWizardPart::openFilesAfterGeneration() @@ -90,7 +90,7 @@ void AppWizardPart::openFilesAfterGeneration() for (KURL::List::const_iterator it = m_urlsToOpen.begin(); it != m_urlsToOpen.end(); ++it) partController()->editDocument(*it); m_urlsToOpen.clear(); - disconnect( core(), SIGNAL( projectOpened() ), this, SLOT( openFilesAfterGeneration() ) ); + disconnect( core(), TQT_SIGNAL( projectOpened() ), this, TQT_SLOT( openFilesAfterGeneration() ) ); } #include "appwizardpart.moc" |