diff options
Diffstat (limited to 'buildtools/ant/antprojectpart.cpp')
-rw-r--r-- | buildtools/ant/antprojectpart.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/buildtools/ant/antprojectpart.cpp b/buildtools/ant/antprojectpart.cpp index 06f78651..52e4fc51 100644 --- a/buildtools/ant/antprojectpart.cpp +++ b/buildtools/ant/antprojectpart.cpp @@ -52,7 +52,7 @@ AntProjectPart::AntProjectPart(TQObject *parent, const char *name, const TQStrin setXMLFile("kdevantproject.rc"); - m_buildProjectAction = new KAction(i18n("&Build Project"), "make_kdevelop", Key_F8, + m_buildProjectAction = new KAction(i18n("&Build Project"), "make_tdevelop", Key_F8, this, TQT_SLOT(slotBuild()), actionCollection(), "build_build" ); m_buildProjectAction->setToolTip(i18n("Build project")); @@ -97,7 +97,7 @@ void AntProjectPart::openProject(const TQString &dirName, const TQString &projec fillMenu(); - TQFile f(dirName + "/" + projectName.lower() + ".kdevelop" + ".filelist"); + TQFile f(dirName + "/" + projectName.lower() + ".tdevelop" + ".filelist"); if (f.open(IO_ReadOnly)) { TQTextStream stream(&f); @@ -164,7 +164,7 @@ void AntProjectPart::closeProject() m_antOptions = AntOptions(); - TQFile f(m_projectDirectory + "/" + m_projectName.lower() + ".kdevelop" + ".filelist"); + TQFile f(m_projectDirectory + "/" + m_projectName.lower() + ".tdevelop" + ".filelist"); if (!f.open(IO_WriteOnly)) return; |