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/autotools/autoprojectpart.cpp | |
parent | 549fec618f0b15c9316fc0a5ebe93c2829bc0b1b (diff) | |
download | tdevelop-2ecab1a194b0dc551b478820e1aaa3b8713354cc.tar.gz tdevelop-2ecab1a194b0dc551b478820e1aaa3b8713354cc.zip |
Additional renaming of kde to tde
Diffstat (limited to 'buildtools/autotools/autoprojectpart.cpp')
-rw-r--r-- | buildtools/autotools/autoprojectpart.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/buildtools/autotools/autoprojectpart.cpp b/buildtools/autotools/autoprojectpart.cpp index bb9a2e68..7f17cb6d 100644 --- a/buildtools/autotools/autoprojectpart.cpp +++ b/buildtools/autotools/autoprojectpart.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2001-2002 by Bernd Gehrmann * - * bernd@kdevelop.org * + * bernd@tdevelop.org * * * * Copyright (C) 2002 by Victor Roeder * * victor_roeder@gmx.de * @@ -40,7 +40,7 @@ #include <klocale.h> #include <kmessagebox.h> #include <kparts/part.h> -#include <kdeversion.h> +#include <tdeversion.h> #include <kprocess.h> #include <domutil.h> @@ -100,7 +100,7 @@ AutoProjectPart::AutoProjectPart(TQObject *parent, const char *name, const TQStr if (!m_isKDE) action->setEnabled(false); - action = new KAction( i18n("&Build Project"), "make_kdevelop", Key_F8, + action = new KAction( i18n("&Build Project"), "make_tdevelop", Key_F8, this, TQT_SLOT(slotBuild()), actionCollection(), "build_build" ); action->setToolTip(i18n("Build project")); @@ -109,7 +109,7 @@ AutoProjectPart::AutoProjectPart(TQObject *parent, const char *name, const TQStr "in the project settings dialog, <b>Make Options</b> tab.")); action->setGroup("autotools"); - action = new KAction( i18n("Build &Active Target"), "make_kdevelop", Key_F7, + action = new KAction( i18n("Build &Active Target"), "make_tdevelop", Key_F7, this, TQT_SLOT(slotBuildActiveTarget()), actionCollection(), "build_buildactivetarget" ); action->setToolTip(i18n("Build active target")); @@ -119,7 +119,7 @@ AutoProjectPart::AutoProjectPart(TQObject *parent, const char *name, const TQStr "in the project settings dialog, <b>Make Options</b> tab.")); action->setGroup("autotools"); - action = new KAction( i18n("Compile &File"), "make_kdevelop", + action = new KAction( i18n("Compile &File"), "make_tdevelop", this, TQT_SLOT(slotCompileFile()), actionCollection(), "build_compilefile" ); action->setToolTip(i18n("Compile file")); @@ -299,7 +299,7 @@ void AutoProjectPart::openProject(const TQString &dirName, const TQString &proje KMessageBox::information( m_widget, i18n("No active target specified, running the application will\n" "not work until you make a target active in the Automake Manager\n" "on the right side or use the Main Program options under\n" - "Project -> Project Options -> Run Options"), i18n("No active target specified"), "kdevelop_open_project_no_active_target"); + "Project -> Project Options -> Run Options"), i18n("No active target specified"), "tdevelop_open_project_no_active_target"); } KDevProject::openProject( dirName, projectName ); |