summaryrefslogtreecommitdiffstats
path: root/src/projectmanager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/projectmanager.cpp')
-rw-r--r--src/projectmanager.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/projectmanager.cpp b/src/projectmanager.cpp
index 19a88d78..adebaee4 100644
--- a/src/projectmanager.cpp
+++ b/src/projectmanager.cpp
@@ -94,14 +94,14 @@ void ProjectManager::createActions( TDEActionCollection* ac )
TDEAction *action;
action = new TDEAction(i18n("&Open Project..."), "project_open", 0,
- this, TQT_SLOT(slotOpenProject()),
+ this, TQ_SLOT(slotOpenProject()),
ac, "project_open");
action->setToolTip( i18n("Open project"));
action->setWhatsThis(i18n("<b>Open project</b><p>Opens a KDevelop3 or KDevelop2 project."));
m_openRecentProjectAction =
new TDERecentFilesAction(i18n("Open &Recent Project"), 0,
- this, TQT_SLOT(loadProject(const KURL &)),
+ this, TQ_SLOT(loadProject(const KURL &)),
ac, "project_open_recent");
m_openRecentProjectAction->setToolTip(i18n("Open recent project"));
m_openRecentProjectAction->setWhatsThis(i18n("<b>Open recent project</b><p>Opens recently opened project."));
@@ -109,14 +109,14 @@ void ProjectManager::createActions( TDEActionCollection* ac )
m_closeProjectAction =
new TDEAction(i18n("C&lose Project"), "window-close",0,
- this, TQT_SLOT(closeProject()),
+ this, TQ_SLOT(closeProject()),
ac, "project_close");
m_closeProjectAction->setEnabled(false);
m_closeProjectAction->setToolTip(i18n("Close project"));
m_closeProjectAction->setWhatsThis(i18n("<b>Close project</b><p>Closes the current project."));
m_projectOptionsAction = new TDEAction(i18n("Project &Options"), "configure", 0,
- this, TQT_SLOT(slotProjectOptions()),
+ this, TQ_SLOT(slotProjectOptions()),
ac, "project_options" );
m_projectOptionsAction->setToolTip(i18n("Project options"));
m_projectOptionsAction->setWhatsThis(i18n("<b>Project options</b><p>Lets you customize project options."));
@@ -151,7 +151,7 @@ void ProjectManager::slotProjectOptions()
TQVBox *box = dlg.addVBoxPage( i18n("General"), i18n("General"), BarIcon( "tdevelop", TDEIcon::SizeMedium ) );
GeneralInfoWidget *g = new GeneralInfoWidget(*API::getInstance()->projectDom(), box, "general informations widget");
- connect (&dlg, TQT_SIGNAL(okClicked()), g, TQT_SLOT(accept()));
+ connect (&dlg, TQ_SIGNAL(okClicked()), g, TQ_SLOT(accept()));
TDEConfig *config = kapp->config();
config->setGroup("Project Settings Dialog");
@@ -239,7 +239,7 @@ bool ProjectManager::loadProject(const KURL &projectURL)
m_info = new ProjectInfo;
m_info->m_projectURL = url;
- TQTimer::singleShot( 0, this, TQT_SLOT(slotLoadProject()) );
+ TQTimer::singleShot( 0, this, TQ_SLOT(slotLoadProject()) );
// no one cares about this value
return true;