diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-16 13:53:18 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-16 13:53:18 -0600 |
commit | 2ecab1a194b0dc551b478820e1aaa3b8713354cc (patch) | |
tree | ae4df71ed26f3dc2dd605970d8d455165a1c8ab3 /buildtools/ant/antprojectpart.cpp | |
parent | 549fec618f0b15c9316fc0a5ebe93c2829bc0b1b (diff) | |
download | tdevelop-2ecab1a194b0dc551b478820e1aaa3b8713354cc.tar.gz tdevelop-2ecab1a194b0dc551b478820e1aaa3b8713354cc.zip |
Additional renaming of kde to tde
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; |