summaryrefslogtreecommitdiffstats
path: root/buildtools/ant
diff options
context:
space:
mode:
Diffstat (limited to 'buildtools/ant')
-rw-r--r--buildtools/ant/Makefile.am2
-rw-r--r--buildtools/ant/antprojectpart.cpp6
2 files changed, 4 insertions, 4 deletions
diff --git a/buildtools/ant/Makefile.am b/buildtools/ant/Makefile.am
index 6a92a5b1..30f314b8 100644
--- a/buildtools/ant/Makefile.am
+++ b/buildtools/ant/Makefile.am
@@ -7,7 +7,7 @@ INCLUDES = -I$(top_srcdir)/buildtools/lib/base \
kde_module_LTLIBRARIES = libkdevantproject.la
libkdevantproject_la_LDFLAGS = $(all_libraries) $(KDE_PLUGIN)
-libkdevantproject_la_LIBADD = $(top_builddir)/lib/libkdevelop.la \
+libkdevantproject_la_LIBADD = $(top_builddir)/lib/libtdevelop.la \
$(top_builddir)/buildtools/lib/widgets/libkdevbuildtoolswidgets.la $(top_builddir)/buildtools/lib/base/libkdevbuildbase.la
libkdevantproject_la_SOURCES = antprojectpart.cpp antoptionswidget.ui classpathwidget.ui
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;