diff options
Diffstat (limited to 'buildtools')
122 files changed, 191 insertions, 191 deletions
diff --git a/buildtools/Makefile.am b/buildtools/Makefile.am index 1c61d027..ab0f5fae 100644 --- a/buildtools/Makefile.am +++ b/buildtools/Makefile.am @@ -1,41 +1,41 @@ ## -## Do NOT remove the comments that start with "kdevelop:" -## They are actually directives to the kdevelop plugin system +## Do NOT remove the comments that start with "tdevelop:" +## They are actually directives to the tdevelop plugin system ## ## The include_xxxx variables are controlled by configure.in.in ## -#kdevelop: ADA_BUILDTOOL = ada +#tdevelop: ADA_BUILDTOOL = ada if include_ada ADA_BUILDTOOL = ada endif -#kdevelop: ANT_BUILDTOOL = ant +#tdevelop: ANT_BUILDTOOL = ant if include_ant ANT_BUILDTOOL = ant endif -#kdevelop: AUTOTOOLS_BUILDTOOL = autotools +#tdevelop: AUTOTOOLS_BUILDTOOL = autotools if include_autoproject AUTOTOOLS_BUILDTOOL = autotools endif -#kdevelop: CUSTOMMAKEFILES_BUILDTOOL = custommakefiles +#tdevelop: CUSTOMMAKEFILES_BUILDTOOL = custommakefiles if include_customproject CUSTOMMAKEFILES_BUILDTOOL = custommakefiles endif -#kdevelop: PASCAL_BUILDTOOL = pascal +#tdevelop: PASCAL_BUILDTOOL = pascal if include_pascal PASCAL_BUILDTOOL = pascal endif -#kdevelop: QMAKE_BUILDTOOL = qmake +#tdevelop: QMAKE_BUILDTOOL = qmake if include_trollproject QMAKE_BUILDTOOL = qmake endif -#kdevelop: SCRIPT_BUILDTOOL = script +#tdevelop: SCRIPT_BUILDTOOL = script if include_scriptproject SCRIPT_BUILDTOOL = script endif diff --git a/buildtools/ada/Makefile.am b/buildtools/ada/Makefile.am index 2de845ca..2b2614ec 100644 --- a/buildtools/ada/Makefile.am +++ b/buildtools/ada/Makefile.am @@ -4,7 +4,7 @@ INCLUDES = -I$(top_srcdir)/buildtools/lib/base -I$(top_srcdir)/lib/interfaces \ kde_module_LTLIBRARIES = libkdevadaproject.la libkdevadaproject_la_LDFLAGS = $(all_libraries) $(KDE_PLUGIN) -libkdevadaproject_la_LIBADD = $(top_builddir)/lib/libkdevelop.la \ +libkdevadaproject_la_LIBADD = $(top_builddir)/lib/libtdevelop.la \ $(top_builddir)/buildtools/lib/base/libkdevbuildbase.la $(top_builddir)/lib/interfaces/extras/libkdevextras.la libkdevadaproject_la_SOURCES = adaproject_part.cpp adaproject_widget.cpp adaproject_optionsdlgbase.ui adaprojectoptionsdlg.cpp adaglobaloptionsdlg.cpp service.cpp diff --git a/buildtools/ada/adaproject_part.cpp b/buildtools/ada/adaproject_part.cpp index 00d7b68c..d97a62d1 100644 --- a/buildtools/ada/adaproject_part.cpp +++ b/buildtools/ada/adaproject_part.cpp @@ -53,7 +53,7 @@ AdaProjectPart::AdaProjectPart(TQObject *parent, const char *name, const TQStrin setXMLFile("kdevadaproject.rc"); KAction *action; - 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 = new KAction( i18n("Execute Program"), "exec", 0, diff --git a/buildtools/ada/service.cpp b/buildtools/ada/service.cpp index 27a7a691..710b8f9c 100644 --- a/buildtools/ada/service.cpp +++ b/buildtools/ada/service.cpp @@ -1,5 +1,5 @@ /* Copyright (C) 2001-2002 by Bernd Gehrmann - * bernd@kdevelop.org + * bernd@tdevelop.org * Copyright (C) 2003 Oliver Kellogg * okellogg@users.sourceforge.net * diff --git a/buildtools/ada/service.h b/buildtools/ada/service.h index f170bb54..ad04b4f1 100644 --- a/buildtools/ada/service.h +++ b/buildtools/ada/service.h @@ -1,5 +1,5 @@ /* Copyright (C) 2001-2002 by Bernd Gehrmann - * bernd@kdevelop.org + * bernd@tdevelop.org * Copyright (C) 2003 Oliver Kellogg * okellogg@users.sourceforge.net * 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; diff --git a/buildtools/autotools/Makefile.am b/buildtools/autotools/Makefile.am index 5972b662..eeebdfa2 100644 --- a/buildtools/autotools/Makefile.am +++ b/buildtools/autotools/Makefile.am @@ -12,7 +12,7 @@ libkdevautoproject_la_LDFLAGS = $(all_libraries) $(KDE_PLUGIN) libkdevautoproject_la_LIBADD = \ $(top_builddir)/buildtools/lib/base/libkdevbuildbase.la \ $(top_builddir)/buildtools/lib/parsers/autotools/libkdevautotoolsparser.la $(top_builddir)/buildtools/lib/widgets/libkdevbuildtoolswidgets.la \ - $(top_builddir)/lib/interfaces/extras/libkdevextras.la $(top_builddir)/lib/libkdevelop.la + $(top_builddir)/lib/interfaces/extras/libkdevextras.la $(top_builddir)/lib/libtdevelop.la libkdevautoproject_la_SOURCES = autoprojectpart.cpp autoprojectwidget.cpp \ configureoptionswidget.cpp configureoptionswidgetbase.ui subprojectoptionsdlg.cpp \ diff --git a/buildtools/autotools/README.dox b/buildtools/autotools/README.dox index acad3e64..34cb31d5 100644 --- a/buildtools/autotools/README.dox +++ b/buildtools/autotools/README.dox @@ -3,7 +3,7 @@ Autoprojectpart is a projectmanager for Automake based projects. Loads and maintains Makefile.am files. -\authors <a href="mailto:bernd AT kdevelop.org">Bernd Gehrmann</a> +\authors <a href="mailto:bernd AT tdevelop.org">Bernd Gehrmann</a> \maintainer <a href="mailto:victor_roeder AT gmx.de">Victor Röder</a> \maintainer <a href="mailto:a.lucas AT tu-bs.de">Amilcar do Carmo Lucas</a> @@ -15,9 +15,9 @@ reconfigure subprojects**. \feature Unsupported automake features will be left unchanged (hopefully), no major testing has been run yet (at least not by myself). -\bug bugs in <a href="http://bugs.kde.org/buglist.cgi?product=kdevelop&component=autoproject&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&order=Bug+Number"> autoproject component at Bugzilla database</a> +\bug bugs in <a href="http://bugs.kde.org/buglist.cgi?product=tdevelop&component=autoproject&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&order=Bug+Number"> autoproject component at Bugzilla database</a> \bug Lower Automake Manager view does not update it's view when adding a subproject (and targets, etc to the new subproject) -\bug If removing the Active Target, update the .kdevelop file, too! +\bug If removing the Active Target, update the .tdevelop file, too! \note @@ -34,6 +34,6 @@ with this configuration the "Automake Manager" doesn't insert the menuentry "exe and doesn't show the "Run Options" in the project configuration.<br> Now you can implement this features with your own special plugin. For an example please look at the projects generated for GBA using the VisualBoy Advance Plugin. -This plugin starts a GBA binary with an emulator. -- <a href="mailto:smeier AT kdevelop.org">Sandy Meier</a> +This plugin starts a GBA binary with an emulator. -- <a href="mailto:smeier AT tdevelop.org">Sandy Meier</a> */ diff --git a/buildtools/autotools/addapplicationdlg.cpp b/buildtools/autotools/addapplicationdlg.cpp index f0cd3693..e6bdc20d 100644 --- a/buildtools/autotools/addapplicationdlg.cpp +++ b/buildtools/autotools/addapplicationdlg.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2001 by Bernd Gehrmann * - * bernd@kdevelop.org * + * bernd@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * diff --git a/buildtools/autotools/addapplicationdlg.h b/buildtools/autotools/addapplicationdlg.h index 3e2645ea..c595c931 100644 --- a/buildtools/autotools/addapplicationdlg.h +++ b/buildtools/autotools/addapplicationdlg.h @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2001 by Bernd Gehrmann * -* bernd@kdevelop.org * +* bernd@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * diff --git a/buildtools/autotools/addfiledlg.cpp b/buildtools/autotools/addfiledlg.cpp index 56df4998..34108fb3 100644 --- a/buildtools/autotools/addfiledlg.cpp +++ b/buildtools/autotools/addfiledlg.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2001-2002 by Bernd Gehrmann * - * bernd@kdevelop.org * + * bernd@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * diff --git a/buildtools/autotools/addfiledlg.h b/buildtools/autotools/addfiledlg.h index 7cbfecec..55e5f7ee 100644 --- a/buildtools/autotools/addfiledlg.h +++ b/buildtools/autotools/addfiledlg.h @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2001 by Bernd Gehrmann * -* bernd@kdevelop.org * +* bernd@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * diff --git a/buildtools/autotools/addicondlg.cpp b/buildtools/autotools/addicondlg.cpp index 509a913b..81d0d859 100644 --- a/buildtools/autotools/addicondlg.cpp +++ b/buildtools/autotools/addicondlg.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2002 by Bernd Gehrmann * - * bernd@kdevelop.org * + * bernd@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -19,7 +19,7 @@ #include <kprocess.h> #include <kstandarddirs.h> #include <kicontheme.h> -#include <kdeversion.h> // fix me! +#include <tdeversion.h> // fix me! #include "autolistviewitems.h" @@ -57,7 +57,7 @@ AddIconDialog::AddIconDialog(AutoProjectPart *part, AutoProjectWidget *widget, somethingChanged(); - setIcon ( SmallIcon ( "iconadd_kdevelop" ) ); + setIcon ( SmallIcon ( "iconadd_tdevelop" ) ); m_part = part; m_widget = widget; diff --git a/buildtools/autotools/addicondlg.h b/buildtools/autotools/addicondlg.h index bfbe1576..8dbddfd4 100644 --- a/buildtools/autotools/addicondlg.h +++ b/buildtools/autotools/addicondlg.h @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2002 by Bernd Gehrmann * -* bernd@kdevelop.org * +* bernd@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * diff --git a/buildtools/autotools/addprefixdlg.cpp b/buildtools/autotools/addprefixdlg.cpp index e4fc3cf1..4c2f1493 100644 --- a/buildtools/autotools/addprefixdlg.cpp +++ b/buildtools/autotools/addprefixdlg.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2001 by Bernd Gehrmann * - * bernd@kdevelop.org * + * bernd@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -18,7 +18,7 @@ #include <kfiledialog.h> #include <klocale.h> #include <kstdguiitem.h> -#include <kdeversion.h> +#include <tdeversion.h> AddPrefixDialog::AddPrefixDialog( const TQString& nameEdit, const TQString& pathEdit, TQWidget *parent, const char *name) diff --git a/buildtools/autotools/addprefixdlg.h b/buildtools/autotools/addprefixdlg.h index 99244eac..d23cb656 100644 --- a/buildtools/autotools/addprefixdlg.h +++ b/buildtools/autotools/addprefixdlg.h @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2001 by Bernd Gehrmann * -* bernd@kdevelop.org * +* bernd@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * diff --git a/buildtools/autotools/addservicedlg.cpp b/buildtools/autotools/addservicedlg.cpp index 67a9f213..ccc10ec2 100644 --- a/buildtools/autotools/addservicedlg.cpp +++ b/buildtools/autotools/addservicedlg.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2001 by Bernd Gehrmann * - * bernd@kdevelop.org * + * bernd@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -58,7 +58,7 @@ AddServiceDialog::AddServiceDialog(AutoProjectWidget *widget, SubprojectItem *sp if (!(*it)->isType(KST_KMimeType)) new TQListViewItem(availtypes_listview, (*it)->name()); - setIcon ( SmallIcon ( "servicenew_kdevelop.png" ) ); + setIcon ( SmallIcon ( "servicenew_tdevelop.png" ) ); } diff --git a/buildtools/autotools/addservicedlg.h b/buildtools/autotools/addservicedlg.h index c72a624f..4684a4f0 100644 --- a/buildtools/autotools/addservicedlg.h +++ b/buildtools/autotools/addservicedlg.h @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2001 by Bernd Gehrmann * -* bernd@kdevelop.org * +* bernd@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * diff --git a/buildtools/autotools/addsubprojectdlg.cpp b/buildtools/autotools/addsubprojectdlg.cpp index 80cc5040..f156a5e1 100644 --- a/buildtools/autotools/addsubprojectdlg.cpp +++ b/buildtools/autotools/addsubprojectdlg.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2001 by Bernd Gehrmann * - * bernd@kdevelop.org * + * bernd@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * diff --git a/buildtools/autotools/addsubprojectdlg.h b/buildtools/autotools/addsubprojectdlg.h index 18c0f739..57e3a105 100644 --- a/buildtools/autotools/addsubprojectdlg.h +++ b/buildtools/autotools/addsubprojectdlg.h @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2001 by Bernd Gehrmann * -* bernd@kdevelop.org * +* bernd@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * diff --git a/buildtools/autotools/addtargetdlg.cpp b/buildtools/autotools/addtargetdlg.cpp index 01cb0a21..868cc504 100644 --- a/buildtools/autotools/addtargetdlg.cpp +++ b/buildtools/autotools/addtargetdlg.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2001 by Bernd Gehrmann * - * bernd@kdevelop.org * + * bernd@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -52,7 +52,7 @@ AddTargetDialog::AddTargetDialog(AutoProjectWidget *widget, SubprojectItem *item connect( filename_edit, TQT_SIGNAL( textChanged(const TQString&) ), this, TQT_SLOT( slotFileNameChanged (const TQString&) ) ); - setIcon ( SmallIcon ( "targetnew_kdevelop.png" ) ); + setIcon ( SmallIcon ( "targetnew_tdevelop.png" ) ); canonicalLabel->setText ( TQString() ); } diff --git a/buildtools/autotools/addtargetdlg.h b/buildtools/autotools/addtargetdlg.h index 5661651d..f89ecabd 100644 --- a/buildtools/autotools/addtargetdlg.h +++ b/buildtools/autotools/addtargetdlg.h @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2001 by Bernd Gehrmann * -* bernd@kdevelop.org * +* bernd@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * diff --git a/buildtools/autotools/addtranslationdlg.cpp b/buildtools/autotools/addtranslationdlg.cpp index 11bf9a86..9962aeb2 100644 --- a/buildtools/autotools/addtranslationdlg.cpp +++ b/buildtools/autotools/addtranslationdlg.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2001 by Bernd Gehrmann * - * bernd@kdevelop.org * + * bernd@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -25,7 +25,7 @@ #include <klocale.h> #include <kmessagebox.h> #include <kstdguiitem.h> -#include <kdeversion.h> +#include <tdeversion.h> #include "misc.h" #include "autoprojectpart.h" diff --git a/buildtools/autotools/addtranslationdlg.h b/buildtools/autotools/addtranslationdlg.h index 954288ba..a52ab144 100644 --- a/buildtools/autotools/addtranslationdlg.h +++ b/buildtools/autotools/addtranslationdlg.h @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 1999 by Sandy Meier * -* bernd@kdevelop.org * +* bernd@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * diff --git a/buildtools/autotools/autodetailsview.cpp b/buildtools/autotools/autodetailsview.cpp index 4408a6b6..45d0886e 100644 --- a/buildtools/autotools/autodetailsview.cpp +++ b/buildtools/autotools/autodetailsview.cpp @@ -207,7 +207,7 @@ void AutoDetailsView::initActions() addExistingFileAction->plug( m_button2 ); addExistingFileAction->setEnabled( false ); - addIconAction = new KAction( i18n( "Add Icon..." ), "iconadd_kdevelop", 0, + addIconAction = new KAction( i18n( "Add Icon..." ), "iconadd_tdevelop", 0, TQT_TQOBJECT(this), TQT_SLOT( slotAddIcon() ), actions, "add icon" ); addIconAction->setWhatsThis(i18n("<b>Add icon</b><p>Adds an icon to a KDEICON target.")); diff --git a/buildtools/autotools/autolistviewitems.cpp b/buildtools/autotools/autolistviewitems.cpp index f9860490..6ffa69a0 100644 --- a/buildtools/autotools/autolistviewitems.cpp +++ b/buildtools/autotools/autolistviewitems.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2001-2002 by Bernd Gehrmann * -* bernd@kdevelop.org * +* bernd@tdevelop.org * * * * Copyright (C) 2002 by Victor Rder * * victor_roeder@gmx.de * diff --git a/buildtools/autotools/autolistviewitems.h b/buildtools/autotools/autolistviewitems.h index 116d316c..0dc28dc5 100644 --- a/buildtools/autotools/autolistviewitems.h +++ b/buildtools/autotools/autolistviewitems.h @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2001-2002 by Bernd Gehrmann * -* bernd@kdevelop.org * +* bernd@tdevelop.org * * * * Copyright (C) 2002 by Victor Röder * * victor_roeder@gmx.de * 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 ); diff --git a/buildtools/autotools/autoprojectpart.h b/buildtools/autotools/autoprojectpart.h index 7c0585fc..8a3506e0 100644 --- a/buildtools/autotools/autoprojectpart.h +++ b/buildtools/autotools/autoprojectpart.h @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2001-2002 by Bernd Gehrmann * -* bernd@kdevelop.org * +* bernd@tdevelop.org * * * * Copyright (C) 2002 by Victor R�er * * victor_roeder@gmx.de * diff --git a/buildtools/autotools/autoprojectwidget.cpp b/buildtools/autotools/autoprojectwidget.cpp index 56a80dfc..86adb657 100644 --- a/buildtools/autotools/autoprojectwidget.cpp +++ b/buildtools/autotools/autoprojectwidget.cpp @@ -1,6 +1,6 @@ /* KDevelop Autotools Support - Copyright (c) 2001-2002 by Bernd Gehrmann <bernd@kdevelop.org> + Copyright (c) 2001-2002 by Bernd Gehrmann <bernd@tdevelop.org> Copyright (c) 2002 by Victor Roeder <victor_roeder@gmx.de> Copyright (c) 2005 by Matt Rogers <mattr@kde.org> diff --git a/buildtools/autotools/autoprojectwidget.h b/buildtools/autotools/autoprojectwidget.h index 554a90f7..74c960fb 100644 --- a/buildtools/autotools/autoprojectwidget.h +++ b/buildtools/autotools/autoprojectwidget.h @@ -1,6 +1,6 @@ /* KDevelop Autotools Support - Copyright (c) 2001-2002 by Bernd Gehrmann <bernd@kdevelop.org> + Copyright (c) 2001-2002 by Bernd Gehrmann <bernd@tdevelop.org> Copyright (c) 2002 by Victor Roeder <victor_roeder@gmx.de> Copyright (c) 2005 by Matt Rogers <mattr@kde.org> diff --git a/buildtools/autotools/autosubprojectview.cpp b/buildtools/autotools/autosubprojectview.cpp index 0c27eb1b..5916b332 100644 --- a/buildtools/autotools/autosubprojectview.cpp +++ b/buildtools/autotools/autosubprojectview.cpp @@ -156,7 +156,7 @@ void AutoSubprojectView::slotSelectionChanged( TQListViewItem* item ) void AutoSubprojectView::loadMakefileams ( const TQString& dir ) { SubprojectItem * item = new SubprojectItem( m_listView, m_part->projectName() ); - item->setPixmap ( 0, SmallIcon ( "kdevelop" ) ); + item->setPixmap ( 0, SmallIcon ( "tdevelop" ) ); item->subdir = "/"; item->path = dir; parse( item ); @@ -197,7 +197,7 @@ void AutoSubprojectView::initActions() "subprojects containing Makefile.am.</qt>")); TQToolTip::add( m_button2, tr2i18n( "Add Target...")); - addTargetAction = new AutoToolsAction( i18n( "Add Target..." ), "targetnew_kdevelop", 0, + addTargetAction = new AutoToolsAction( i18n( "Add Target..." ), "targetnew_tdevelop", 0, TQT_TQOBJECT(this), TQT_SLOT( slotAddTarget() ), actions, "add target" ); addTargetAction->setWhatsThis(i18n( "<qt><b>Add target</b><p>Adds a new target to " "the currently selected subproject. Target can be a " @@ -206,7 +206,7 @@ void AutoSubprojectView::initActions() addTargetAction->plug( m_button2 ); TQToolTip::add( m_button3, tr2i18n( "Add Service...")); - addServiceAction = new AutoToolsAction( i18n( "Add Service..." ), "servicenew_kdevelop", 0, TQT_TQOBJECT(this), + addServiceAction = new AutoToolsAction( i18n( "Add Service..." ), "servicenew_tdevelop", 0, TQT_TQOBJECT(this), TQT_SLOT( slotAddService() ), actions, "add service" ); addServiceAction->setWhatsThis(i18n("<qt><b>Add service</b><p>Creates a .desktop file describing the service.</qt>")); addServiceAction->plug( m_button3 ); @@ -836,7 +836,7 @@ void AutoSubprojectView::parseSUBDIRS( SubprojectItem *item, } //search for AC_SUBST variables and try to replace them with variables - //that have been already defined e.g. in a "kdevelop hint" + //that have been already defined e.g. in a "tdevelop hint" varre = TQRegExp( "\\@(.*)\\@" ); varre.setMinimal( true ); while ( varre.search( subdirs ) != -1 ) diff --git a/buildtools/autotools/choosetargetdialog.cpp b/buildtools/autotools/choosetargetdialog.cpp index 526a4ce7..ca1ddf50 100644 --- a/buildtools/autotools/choosetargetdialog.cpp +++ b/buildtools/autotools/choosetargetdialog.cpp @@ -79,7 +79,7 @@ ChooseTargetDialog::ChooseTargetDialog ( AutoProjectWidget* widget, AutoProjectP d->baseUI->newFileList->addColumn( TQString() ); d->baseUI->newFileList->setSorting(-1); - setIcon ( SmallIcon ( "target_kdevelop" ) ); + setIcon ( SmallIcon ( "target_tdevelop" ) ); TQPtrListIterator<SubprojectItem> sit(d->subprojectList); @@ -172,7 +172,7 @@ void ChooseTargetDialog::slotSubprojectChanged ( const TQString& name ) if ( titem->primary == "PROGRAMS" || titem->primary == "LIBRARIES" || titem->primary == "LTLIBRARIES" || titem->primary == "JAVA" ) { - d->baseUI->targetComboBox->insertItem ( SmallIcon ( "target_kdevelop" ), titem->name ); + d->baseUI->targetComboBox->insertItem ( SmallIcon ( "target_tdevelop" ), titem->name ); //d->baseUI->targetComboBox->addToHistory ( titem->name ); diff --git a/buildtools/autotools/configureoptionswidget.cpp b/buildtools/autotools/configureoptionswidget.cpp index ad35329a..d847a559 100644 --- a/buildtools/autotools/configureoptionswidget.cpp +++ b/buildtools/autotools/configureoptionswidget.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2001-2002 by Bernd Gehrmann * - * bernd@kdevelop.org * + * bernd@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * diff --git a/buildtools/autotools/configureoptionswidget.h b/buildtools/autotools/configureoptionswidget.h index 35cd5688..1d3d8a3f 100644 --- a/buildtools/autotools/configureoptionswidget.h +++ b/buildtools/autotools/configureoptionswidget.h @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2001-2002 by Bernd Gehrmann * -* bernd@kdevelop.org * +* bernd@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * diff --git a/buildtools/autotools/fileselectorwidget.h b/buildtools/autotools/fileselectorwidget.h index e3c73a5e..96b5c79c 100644 --- a/buildtools/autotools/fileselectorwidget.h +++ b/buildtools/autotools/fileselectorwidget.h @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2001 by Bernd Gehrmann * -* bernd@kdevelop.org * +* bernd@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * diff --git a/buildtools/autotools/managecustomcommand.cpp b/buildtools/autotools/managecustomcommand.cpp index a602a3a9..af0f0e93 100644 --- a/buildtools/autotools/managecustomcommand.cpp +++ b/buildtools/autotools/managecustomcommand.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2004 by Alexander Dymo <adymo@kdevelop.org> * + * Copyright (C) 2004 by Alexander Dymo <adymo@tdevelop.org> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU Library General Public License as * diff --git a/buildtools/autotools/managecustomcommand.h b/buildtools/autotools/managecustomcommand.h index 8b1ae9d4..96dacb89 100644 --- a/buildtools/autotools/managecustomcommand.h +++ b/buildtools/autotools/managecustomcommand.h @@ -1,5 +1,5 @@ /*************************************************************************** -* Copyright (C) 2004 by Alexander Dymo <adymo@kdevelop.org> * +* Copyright (C) 2004 by Alexander Dymo <adymo@tdevelop.org> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU Library General Public License as * diff --git a/buildtools/autotools/misc.cpp b/buildtools/autotools/misc.cpp index 31dad76a..cbe4d24c 100644 --- a/buildtools/autotools/misc.cpp +++ b/buildtools/autotools/misc.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2001-2002 by Bernd Gehrmann * -* bernd@kdevelop.org * +* bernd@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -110,7 +110,7 @@ void AutoProjectTool::parseMakefileam(const TQString &fileName, TQMap<TQString, } TQTextStream stream(&f); - TQRegExp re("^(#kdevelop:[ \t]*)?([A-Za-z][@A-Za-z0-9_]*)[ \t]*([:\\+]?=)[ \t]*(.*)$"); + TQRegExp re("^(#tdevelop:[ \t]*)?([A-Za-z][@A-Za-z0-9_]*)[ \t]*([:\\+]?=)[ \t]*(.*)$"); TQString last; bool multiLine = false; @@ -227,7 +227,7 @@ void AutoProjectTool::setMakefileam ( const TQString &fileName, TQMap<TQString, TQTextStream outs ( &fout ); // variables - TQRegExp re ( "^(#kdevelop:[ \t]*)?([A-Za-z][@A-Za-z0-9_]*)[ \t]*([:\\+]?=)[ \t]*(.*)$" ); + TQRegExp re ( "^(#tdevelop:[ \t]*)?([A-Za-z][@A-Za-z0-9_]*)[ \t]*([:\\+]?=)[ \t]*(.*)$" ); bool multiLine = false; TQString lastLhs; @@ -414,7 +414,7 @@ void AutoProjectTool::addRemoveMakefileam(const TQString &fileName, TQMap<TQStri TQTextStream outs(&fout); // variables - TQRegExp re("^(#kdevelop:[ \t]*)?([A-Za-z][@A-Za-z0-9_]*)[ \t]*([:\\+]?=)[ \t]*(.*)$"); + TQRegExp re("^(#tdevelop:[ \t]*)?([A-Za-z][@A-Za-z0-9_]*)[ \t]*([:\\+]?=)[ \t]*(.*)$"); // build key=map of values to add // map can be empty.we never add an empty key, but do remove empty keys from the file.. diff --git a/buildtools/autotools/misc.h b/buildtools/autotools/misc.h index def8ce20..320690be 100644 --- a/buildtools/autotools/misc.h +++ b/buildtools/autotools/misc.h @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2001-2002 by Bernd Gehrmann * -* bernd@kdevelop.org * +* bernd@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * diff --git a/buildtools/autotools/removefiledlg.cpp b/buildtools/autotools/removefiledlg.cpp index fef4b2df..95447092 100644 --- a/buildtools/autotools/removefiledlg.cpp +++ b/buildtools/autotools/removefiledlg.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2001 by Bernd Gehrmann * - * bernd@kdevelop.org * + * bernd@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * diff --git a/buildtools/autotools/removefiledlg.h b/buildtools/autotools/removefiledlg.h index fdb94ff0..40157733 100644 --- a/buildtools/autotools/removefiledlg.h +++ b/buildtools/autotools/removefiledlg.h @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2001 by Bernd Gehrmann * -* bernd@kdevelop.org * +* bernd@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * diff --git a/buildtools/autotools/removetargetdlg.cpp b/buildtools/autotools/removetargetdlg.cpp index 12847dff..10dc1f06 100644 --- a/buildtools/autotools/removetargetdlg.cpp +++ b/buildtools/autotools/removetargetdlg.cpp @@ -99,7 +99,7 @@ void RemoveTargetDialog::init() if ( spitem->variables[canonname + "_LIBADD"].contains ( m_titem->name ) > 0 || spitem->variables[canonname + "_LDADD"].contains ( m_titem->name ) > 0 ) { - dependencyListBox->insertItem ( SmallIcon ( "target_kdevelop" ), spitem->path + " (" + titem->name + ")" ); + dependencyListBox->insertItem ( SmallIcon ( "target_tdevelop" ), spitem->path + " (" + titem->name + ")" ); dependentSubprojects.append ( spitem ); } diff --git a/buildtools/autotools/subprojectoptionsdlg.cpp b/buildtools/autotools/subprojectoptionsdlg.cpp index f3e1c6f1..139193b4 100644 --- a/buildtools/autotools/subprojectoptionsdlg.cpp +++ b/buildtools/autotools/subprojectoptionsdlg.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2001 by Bernd Gehrmann * - * bernd@kdevelop.org * + * bernd@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * diff --git a/buildtools/autotools/subprojectoptionsdlg.h b/buildtools/autotools/subprojectoptionsdlg.h index aea70658..9dac111d 100644 --- a/buildtools/autotools/subprojectoptionsdlg.h +++ b/buildtools/autotools/subprojectoptionsdlg.h @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2001 by Bernd Gehrmann * -* bernd@kdevelop.org * +* bernd@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * diff --git a/buildtools/autotools/targetoptionsdlg.cpp b/buildtools/autotools/targetoptionsdlg.cpp index da9ade0c..7c40fbfc 100644 --- a/buildtools/autotools/targetoptionsdlg.cpp +++ b/buildtools/autotools/targetoptionsdlg.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2001 by Bernd Gehrmann * - * bernd@kdevelop.org * + * bernd@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * diff --git a/buildtools/autotools/targetoptionsdlg.h b/buildtools/autotools/targetoptionsdlg.h index ea74c717..4df7e49b 100644 --- a/buildtools/autotools/targetoptionsdlg.h +++ b/buildtools/autotools/targetoptionsdlg.h @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2001 by Bernd Gehrmann * -* bernd@kdevelop.org * +* bernd@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * diff --git a/buildtools/custommakefiles/Makefile.am b/buildtools/custommakefiles/Makefile.am index fab92b8b..087ab001 100644 --- a/buildtools/custommakefiles/Makefile.am +++ b/buildtools/custommakefiles/Makefile.am @@ -7,7 +7,7 @@ INCLUDES = -I$(top_srcdir)/buildtools/lib/base \ kde_module_LTLIBRARIES = libkdevcustomproject.la libkdevcustomproject_la_LDFLAGS = $(all_libraries) $(KDE_PLUGIN) -libkdevcustomproject_la_LIBADD = $(top_builddir)/lib/libkdevelop.la \ +libkdevcustomproject_la_LIBADD = $(top_builddir)/lib/libtdevelop.la \ $(top_builddir)/buildtools/lib/widgets/libkdevbuildtoolswidgets.la $(top_builddir)/buildtools/lib/base/libkdevbuildbase.la libkdevcustomproject_la_SOURCES = selectnewfilesdialog.cpp selectnewfilesdialogbase.ui \ diff --git a/buildtools/custommakefiles/README.dox b/buildtools/custommakefiles/README.dox index 28762d87..877cdf62 100644 --- a/buildtools/custommakefiles/README.dox +++ b/buildtools/custommakefiles/README.dox @@ -5,7 +5,7 @@ over several lines. You can even use some html commands in these lines like: <code>This is code</code>, html links <a href="http://somelocation">link text</a>, and images. -\authors <a href="mailto:bernd AT kdevelop.org">Bernd Gehrmann</a> +\authors <a href="mailto:bernd AT tdevelop.org">Bernd Gehrmann</a> \unmaintained This part is currently un-maintained @@ -14,7 +14,7 @@ and images. ... \feature Describe the last feature -\bug bugs in <a href="http://bugs.kde.org/buglist.cgi?product=kdevelop&component=customproject&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&order=Bug+Number">customproject component at Bugzilla database</a> +\bug bugs in <a href="http://bugs.kde.org/buglist.cgi?product=tdevelop&component=customproject&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&order=Bug+Number">customproject component at Bugzilla database</a> \bug Describe a the 1st bug that you know of, but probably hasn't been reported yet. .. \bug Describe a the nth bug that you know of, but probably hasn't been reported yet. diff --git a/buildtools/custommakefiles/custombuildoptionswidget.cpp b/buildtools/custommakefiles/custombuildoptionswidget.cpp index e979df61..920a0908 100644 --- a/buildtools/custommakefiles/custombuildoptionswidget.cpp +++ b/buildtools/custommakefiles/custombuildoptionswidget.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2002 by Bernd Gehrmann * - * bernd@kdevelop.org * + * bernd@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * diff --git a/buildtools/custommakefiles/custombuildoptionswidget.h b/buildtools/custommakefiles/custombuildoptionswidget.h index 2c5c0568..03c7232d 100644 --- a/buildtools/custommakefiles/custombuildoptionswidget.h +++ b/buildtools/custommakefiles/custombuildoptionswidget.h @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2002 by Bernd Gehrmann * - * bernd@kdevelop.org * + * bernd@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * diff --git a/buildtools/custommakefiles/customprojectpart.cpp b/buildtools/custommakefiles/customprojectpart.cpp index 4010c742..ecdabd64 100644 --- a/buildtools/custommakefiles/customprojectpart.cpp +++ b/buildtools/custommakefiles/customprojectpart.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2001-2002 by Bernd Gehrmann * - * bernd@kdevelop.org * + * bernd@tdevelop.org * * Copyright (C) 2007 by Andreas Pakulat * * apaku@gmx.de * * * @@ -38,7 +38,7 @@ #include <kmessagebox.h> #include <kparts/part.h> #include <kpopupmenu.h> -#include <kdeversion.h> +#include <tdeversion.h> #include <kprocess.h> #include "domutil.h" @@ -80,7 +80,7 @@ CustomProjectPart::CustomProjectPart( TQObject *parent, const char *name, const action->setToolTip( i18n( "Re-Populate Project" ) ); action->setWhatsThis( i18n( "<b>Re-Populate Project</b><p>Re-Populates the project, searching through the project directory and adding all files that match one of the wildcards set in the custom manager options of the project filelist." ) ); - 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" ) ); @@ -88,7 +88,7 @@ CustomProjectPart::CustomProjectPart( TQObject *parent, const char *name, const "Environment variables and make arguments can be specified " "in the project settings dialog, <b>Build Options</b> tab." ) ); - action = new KAction( i18n( "&Build Active Directory" ), "make_kdevelop", Key_F7, + action = new KAction( i18n( "&Build Active Directory" ), "make_tdevelop", Key_F7, this, TQT_SLOT( slotBuildActiveDir() ), actionCollection(), "build_buildactivetarget" ); action->setToolTip( i18n( "Build active directory" ) ); @@ -96,7 +96,7 @@ CustomProjectPart::CustomProjectPart( TQObject *parent, const char *name, const "Environment variables and make arguments can be specified " "in the project settings dialog, <b>Make Options</b> tab." ) ); - 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" ) ); @@ -412,23 +412,23 @@ void CustomProjectPart::openProject( const TQString &dirName, const TQString &pr DomUtil::writeListEntry( dom, "/kdevcustomproject/filetypes", "filetype", types ); } - /*this entry is currently only created by the cmake kdevelop3 project generator + /*this entry is currently only created by the cmake tdevelop3 project generator in order to support completely-out-of-source builds, where nothing, not - even the kdevelop project files are created in the source directory, Alex <neundorf@kde.org> + even the tdevelop project files are created in the source directory, Alex <neundorf@kde.org> */ m_filelistDir = DomUtil::readEntry( dom, "/kdevcustomproject/filelistdirectory" ); if ( m_filelistDir.isEmpty() ) m_filelistDir = dirName; if ( TQFileInfo( m_filelistDir + "/" + projectName.lower() + - ".kdevelop.filelist" ).exists() ) + ".tdevelop.filelist" ).exists() ) { TQDir( m_filelistDir ).rename( - projectName.lower() + ".kdevelop.filelist", - projectName + ".kdevelop.filelist" ); + projectName.lower() + ".tdevelop.filelist", + projectName + ".tdevelop.filelist" ); } - TQFile f( m_filelistDir + "/" + projectName + ".kdevelop.filelist" ); + TQFile f( m_filelistDir + "/" + projectName + ".tdevelop.filelist" ); if ( f.open( IO_ReadOnly ) ) { TQTextStream stream( &f ); @@ -588,7 +588,7 @@ void CustomProjectPart::closeProject() void CustomProjectPart::saveProject() { - TQFile f( m_filelistDir + "/" + m_projectName + ".kdevelop.filelist" ); + TQFile f( m_filelistDir + "/" + m_projectName + ".tdevelop.filelist" ); if ( !f.open( IO_WriteOnly ) ) return; diff --git a/buildtools/custommakefiles/customprojectpart.h b/buildtools/custommakefiles/customprojectpart.h index 7bbedb5e..1a963e34 100644 --- a/buildtools/custommakefiles/customprojectpart.h +++ b/buildtools/custommakefiles/customprojectpart.h @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2001-2002 by Bernd Gehrmann * - * bernd@kdevelop.org * + * bernd@tdevelop.org * * Copyright (C) 2007 by Andreas Pakulat * * apaku@gmx.de * * * diff --git a/buildtools/lib/base/CMakeLists.txt b/buildtools/lib/base/CMakeLists.txt index 1f3e9fbf..f3585669 100644 --- a/buildtools/lib/base/CMakeLists.txt +++ b/buildtools/lib/base/CMakeLists.txt @@ -27,7 +27,7 @@ link_directories( install( FILES kdevbuildtool.h - DESTINATION ${INCLUDE_INSTALL_DIR}/kdevelop/buildtools/base ) + DESTINATION ${INCLUDE_INSTALL_DIR}/tdevelop/buildtools/base ) ##### kdevbuildbase (shared) #################### @@ -35,6 +35,6 @@ install( FILES tde_add_library( kdevbuildbase SHARED AUTOMOC SOURCES kdevbuildtool.cpp VERSION 0.0.0 - LINK kdevelop-shared + LINK tdevelop-shared DESTINATION ${LIB_INSTALL_DIR} ) diff --git a/buildtools/lib/base/Mainpage.dox b/buildtools/lib/base/Mainpage.dox index dbf199a5..3e16d2d8 100644 --- a/buildtools/lib/base/Mainpage.dox +++ b/buildtools/lib/base/Mainpage.dox @@ -5,7 +5,7 @@ This library contains base classes for KDevelop builtool support plugins. <b>Link with</b>: -lkdevbuildbase -<b>Include path</b>: -I\$(kde_includes)/kdevelop/buildtools/base +<b>Include path</b>: -I\$(kde_includes)/tdevelop/buildtools/base \section btbaseoverview Overview This library is created to provide KDevBuildTool compat class which can be used diff --git a/buildtools/lib/base/Makefile.am b/buildtools/lib/base/Makefile.am index 27fc66c5..be6b9576 100644 --- a/buildtools/lib/base/Makefile.am +++ b/buildtools/lib/base/Makefile.am @@ -6,8 +6,8 @@ lib_LTLIBRARIES = libkdevbuildbase.la libkdevbuildbase_la_LDFLAGS = $(all_libraries) libkdevbuildbase_la_LIBADD = $(top_builddir)/lib/interfaces/libkdevinterfaces.la $(LIB_QT) $(LIB_TDEUI) libkdevbuildbase_la_SOURCES = kdevbuildtool.cpp -kdevelopbuildtoolsincludedir = $(includedir)/kdevelop/buildtools/base -kdevelopbuildtoolsinclude_HEADERS = kdevbuildtool.h +tdevelopbuildtoolsincludedir = $(includedir)/tdevelop/buildtools/base +tdevelopbuildtoolsinclude_HEADERS = kdevbuildtool.h DOXYGEN_REFERENCES = dcop interfaces tdecore tdefx tdeui khtml kmdi kio kjs kparts kutils kdevutil kdevinterfaces kdevextensions DOXYGEN_PROJECTNAME = KDevelop Buildtool Base Library diff --git a/buildtools/lib/base/kdevbuildtool.cpp b/buildtools/lib/base/kdevbuildtool.cpp index 2dfc3d84..29e2c96a 100644 --- a/buildtools/lib/base/kdevbuildtool.cpp +++ b/buildtools/lib/base/kdevbuildtool.cpp @@ -1,5 +1,5 @@ /* This file is part of the KDE project - Copyright (C) 2004 Alexander Dymo <adymo@kdevelop.org> + Copyright (C) 2004 Alexander Dymo <adymo@tdevelop.org> This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/buildtools/lib/base/kdevbuildtool.h b/buildtools/lib/base/kdevbuildtool.h index ff1abcc0..46545109 100644 --- a/buildtools/lib/base/kdevbuildtool.h +++ b/buildtools/lib/base/kdevbuildtool.h @@ -1,6 +1,6 @@ /* This file is part of the KDE project - Copyright (C) 1999-2001 Bernd Gehrmann <bernd@kdevelop.org> - Copyright (C) 2004 Alexander Dymo <adymo@kdevelop.org> + Copyright (C) 1999-2001 Bernd Gehrmann <bernd@tdevelop.org> + Copyright (C) 2004 Alexander Dymo <adymo@tdevelop.org> This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/buildtools/lib/parsers/autotools/Mainpage.dox b/buildtools/lib/parsers/autotools/Mainpage.dox index 99d200d9..d54178ee 100644 --- a/buildtools/lib/parsers/autotools/Mainpage.dox +++ b/buildtools/lib/parsers/autotools/Mainpage.dox @@ -5,7 +5,7 @@ This library contains a parser that handles Makefile.am. <b>Link with</b>: -lkdevautotoolsparser -<b>Include path</b>: -I\$(kde_includes)/kdevelop/buildtools/parsers/autotools +<b>Include path</b>: -I\$(kde_includes)/tdevelop/buildtools/parsers/autotools */ diff --git a/buildtools/lib/parsers/autotools/autotools.ll b/buildtools/lib/parsers/autotools/autotools.ll index f05f8ff6..7b840a2a 100644 --- a/buildtools/lib/parsers/autotools/autotools.ll +++ b/buildtools/lib/parsers/autotools/autotools.ll @@ -1,7 +1,7 @@ %{ /*************************************************************************** * Copyright (C) 2005 by Alexander Dymo * - * adymo@kdevelop.org * + * adymo@tdevelop.org * * * * Copyright (c) 2005 by Matt Rogers * * mattr@kde.org * diff --git a/buildtools/lib/parsers/autotools/autotools.yy b/buildtools/lib/parsers/autotools/autotools.yy index d76cc5fe..9388ff93 100644 --- a/buildtools/lib/parsers/autotools/autotools.yy +++ b/buildtools/lib/parsers/autotools/autotools.yy @@ -1,7 +1,7 @@ %{ /*************************************************************************** * Copyright (C) 2005 by Alexander Dymo * - * adymo@kdevelop.org * + * adymo@tdevelop.org * * * * Copyright (c) 2005 by Matt Rogers * * mattr@kde.org * diff --git a/buildtools/lib/parsers/autotools/autotools_lex.cpp b/buildtools/lib/parsers/autotools/autotools_lex.cpp index d20bbdb6..764cd26f 100644 --- a/buildtools/lib/parsers/autotools/autotools_lex.cpp +++ b/buildtools/lib/parsers/autotools/autotools_lex.cpp @@ -505,7 +505,7 @@ char *yytext; #line 2 "autotools.ll" /*************************************************************************** * Copyright (C) 2005 by Alexander Dymo * - * adymo@kdevelop.org * + * adymo@tdevelop.org * * * * Copyright (c) 2005 by Matt Rogers * * mattr@kde.org * diff --git a/buildtools/lib/parsers/autotools/autotools_yacc.cpp b/buildtools/lib/parsers/autotools/autotools_yacc.cpp index 93cdb733..f7508cc6 100644 --- a/buildtools/lib/parsers/autotools/autotools_yacc.cpp +++ b/buildtools/lib/parsers/autotools/autotools_yacc.cpp @@ -116,7 +116,7 @@ /*************************************************************************** * Copyright (C) 2005 by Alexander Dymo * - * adymo@kdevelop.org * + * adymo@tdevelop.org * * * * Copyright (c) 2005 by Matt Rogers * * mattr@kde.org * diff --git a/buildtools/lib/parsers/autotools/autotoolsast.cpp b/buildtools/lib/parsers/autotools/autotoolsast.cpp index f6ac032f..659fe47f 100644 --- a/buildtools/lib/parsers/autotools/autotoolsast.cpp +++ b/buildtools/lib/parsers/autotools/autotoolsast.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2005 by Alexander Dymo * - * adymo@kdevelop.org * + * adymo@tdevelop.org * * * * Copyright (c) 2005 by Matt Rogers * * mattr@kde.org * diff --git a/buildtools/lib/parsers/autotools/autotoolsast.h b/buildtools/lib/parsers/autotools/autotoolsast.h index e690baa4..0f5dcdc9 100644 --- a/buildtools/lib/parsers/autotools/autotoolsast.h +++ b/buildtools/lib/parsers/autotools/autotoolsast.h @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2005 by Alexander Dymo * - * adymo@kdevelop.org * + * adymo@tdevelop.org * * * * Copyright (c) 2005 by Matt Rogers * * mattr@kde.org * diff --git a/buildtools/lib/parsers/autotools/autotoolsdriver.cpp b/buildtools/lib/parsers/autotools/autotoolsdriver.cpp index 05734c3f..5a1de34c 100644 --- a/buildtools/lib/parsers/autotools/autotoolsdriver.cpp +++ b/buildtools/lib/parsers/autotools/autotoolsdriver.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2005 by Alexander Dymo * - * adymo@kdevelop.org * + * adymo@tdevelop.org * * * * Copyright (c) 2005 by Matt Rogers * * mattr@kde.org * diff --git a/buildtools/lib/parsers/autotools/autotoolsdriver.h b/buildtools/lib/parsers/autotools/autotoolsdriver.h index 8e29bec6..47f3acdb 100644 --- a/buildtools/lib/parsers/autotools/autotoolsdriver.h +++ b/buildtools/lib/parsers/autotools/autotoolsdriver.h @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2005 by Alexander Dymo * - * adymo@kdevelop.org * + * adymo@tdevelop.org * * * * Copyright (c) 2005 by Matt Rogers * * mattr@kde.org * diff --git a/buildtools/lib/parsers/autotools/tests/runner.cpp b/buildtools/lib/parsers/autotools/tests/runner.cpp index 0af67e18..1e817854 100644 --- a/buildtools/lib/parsers/autotools/tests/runner.cpp +++ b/buildtools/lib/parsers/autotools/tests/runner.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2005 by Alexander Dymo * - * adymo@kdevelop.org * + * adymo@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU Library General Public License as * diff --git a/buildtools/lib/parsers/autotools/tests/viewer.cpp b/buildtools/lib/parsers/autotools/tests/viewer.cpp index 0625ae11..2693a68c 100644 --- a/buildtools/lib/parsers/autotools/tests/viewer.cpp +++ b/buildtools/lib/parsers/autotools/tests/viewer.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2005 by Alexander Dymo * - * adymo@kdevelop.org * + * adymo@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU Library General Public License as * diff --git a/buildtools/lib/parsers/autotools/tests/viewer.h b/buildtools/lib/parsers/autotools/tests/viewer.h index 1e0b7b0f..744ca82d 100644 --- a/buildtools/lib/parsers/autotools/tests/viewer.h +++ b/buildtools/lib/parsers/autotools/tests/viewer.h @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2005 by Alexander Dymo * - * adymo@kdevelop.org * + * adymo@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU Library General Public License as * diff --git a/buildtools/lib/parsers/autotools/tests/viewer_main.cpp b/buildtools/lib/parsers/autotools/tests/viewer_main.cpp index 0fc5157b..2811c73d 100644 --- a/buildtools/lib/parsers/autotools/tests/viewer_main.cpp +++ b/buildtools/lib/parsers/autotools/tests/viewer_main.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2005 by Alexander Dymo * - * adymo@kdevelop.org * + * adymo@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU Library General Public License as * diff --git a/buildtools/lib/parsers/qmake/CMakeLists.txt b/buildtools/lib/parsers/qmake/CMakeLists.txt index 00898d3c..73296c7b 100644 --- a/buildtools/lib/parsers/qmake/CMakeLists.txt +++ b/buildtools/lib/parsers/qmake/CMakeLists.txt @@ -24,7 +24,7 @@ link_directories( install( FILES qmakeast.h qmakedriver.h qmakeastvisitor.h - DESTINATION ${INCLUDE_INSTALL_DIR}/kdevelop/buildtools/parsers/qmake ) + DESTINATION ${INCLUDE_INSTALL_DIR}/tdevelop/buildtools/parsers/qmake ) ##### kdevqmakeparser (shared) ################## diff --git a/buildtools/lib/parsers/qmake/Mainpage.dox b/buildtools/lib/parsers/qmake/Mainpage.dox index 7b2e2682..82270be0 100644 --- a/buildtools/lib/parsers/qmake/Mainpage.dox +++ b/buildtools/lib/parsers/qmake/Mainpage.dox @@ -5,7 +5,7 @@ This library contains qmake parser. <b>Link with</b>: -lkdevqmakeparser -<b>Include path</b>: -I\$(kde_includes)/kdevelop/buildtools/parsers/qmake +<b>Include path</b>: -I\$(kde_includes)/tdevelop/buildtools/parsers/qmake \section qmakeparseroverview Overview Here resides a parser for qmake .pro (.pri) files. This parser diff --git a/buildtools/lib/parsers/qmake/Makefile.am b/buildtools/lib/parsers/qmake/Makefile.am index ac6f9ea5..8dde1ed2 100644 --- a/buildtools/lib/parsers/qmake/Makefile.am +++ b/buildtools/lib/parsers/qmake/Makefile.am @@ -13,8 +13,8 @@ libkdevqmakeparser_la_LDFLAGS = -no-undefined $(all_libraries) $(LIB_KIO) libkdevqmakeparser_la_SOURCES = qmake_lex.cpp qmake_yacc.cpp qmakeast.cpp \ qmakeastvisitor.cpp qmakedriver.cpp -kdevelopbuildtoolsincludedir = $(includedir)/kdevelop/buildtools/parsers/qmake -kdevelopbuildtoolsinclude_HEADERS = qmakeast.h qmakedriver.h qmakeastvisitor.h +tdevelopbuildtoolsincludedir = $(includedir)/tdevelop/buildtools/parsers/qmake +tdevelopbuildtoolsinclude_HEADERS = qmakeast.h qmakedriver.h qmakeastvisitor.h parser: cd $(srcdir) ; \ diff --git a/buildtools/lib/parsers/qmake/qmake.ll b/buildtools/lib/parsers/qmake/qmake.ll index a0289f6e..9ed90e23 100644 --- a/buildtools/lib/parsers/qmake/qmake.ll +++ b/buildtools/lib/parsers/qmake/qmake.ll @@ -1,7 +1,7 @@ %{ /*************************************************************************** * Copyright (C) 2005 by Alexander Dymo * - * adymo@kdevelop.org * + * adymo@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU Library General Public License as * diff --git a/buildtools/lib/parsers/qmake/qmake.yy b/buildtools/lib/parsers/qmake/qmake.yy index e11c086d..991f1eee 100644 --- a/buildtools/lib/parsers/qmake/qmake.yy +++ b/buildtools/lib/parsers/qmake/qmake.yy @@ -1,7 +1,7 @@ %{ /*************************************************************************** * Copyright (C) 2005 by Alexander Dymo * - * adymo@kdevelop.org * + * adymo@tdevelop.org * * Copyright (C) 2006 by Andreas Pakulat * * apaku@gmx.de * * * diff --git a/buildtools/lib/parsers/qmake/qmake_lex.cpp b/buildtools/lib/parsers/qmake/qmake_lex.cpp index 4d74571c..0151bf29 100644 --- a/buildtools/lib/parsers/qmake/qmake_lex.cpp +++ b/buildtools/lib/parsers/qmake/qmake_lex.cpp @@ -604,7 +604,7 @@ static yyconst flex_int16_t yy_rule_linenum[23] = #line 2 "qmake.ll" /*************************************************************************** * Copyright (C) 2005 by Alexander Dymo * - * adymo@kdevelop.org * + * adymo@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU Library General Public License as * diff --git a/buildtools/lib/parsers/qmake/qmake_yacc.hpp b/buildtools/lib/parsers/qmake/qmake_yacc.hpp index 6b810683..fed15b11 100644 --- a/buildtools/lib/parsers/qmake/qmake_yacc.hpp +++ b/buildtools/lib/parsers/qmake/qmake_yacc.hpp @@ -52,7 +52,7 @@ namespace TQMake /*************************************************************************** * Copyright (C) 2005 by Alexander Dymo * - * adymo@kdevelop.org * + * adymo@tdevelop.org * * Copyright (C) 2006 by Andreas Pakulat * * apaku@gmx.de * * * diff --git a/buildtools/lib/parsers/qmake/qmakeast.cpp b/buildtools/lib/parsers/qmake/qmakeast.cpp index 2c1e5a53..5f55af4b 100644 --- a/buildtools/lib/parsers/qmake/qmakeast.cpp +++ b/buildtools/lib/parsers/qmake/qmakeast.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2005 by Alexander Dymo * - * adymo@kdevelop.org * + * adymo@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU Library General Public License as * diff --git a/buildtools/lib/parsers/qmake/qmakeast.h b/buildtools/lib/parsers/qmake/qmakeast.h index e2abba70..a0c5c1de 100644 --- a/buildtools/lib/parsers/qmake/qmakeast.h +++ b/buildtools/lib/parsers/qmake/qmakeast.h @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2005 by Alexander Dymo * - * adymo@kdevelop.org * + * adymo@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU Library General Public License as * diff --git a/buildtools/lib/parsers/qmake/qmakeastvisitor.cpp b/buildtools/lib/parsers/qmake/qmakeastvisitor.cpp index b9470bd9..b733a880 100644 --- a/buildtools/lib/parsers/qmake/qmakeastvisitor.cpp +++ b/buildtools/lib/parsers/qmake/qmakeastvisitor.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2005 by Alexander Dymo * - * adymo@kdevelop.org * + * adymo@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU Library General Public License as * diff --git a/buildtools/lib/parsers/qmake/qmakeastvisitor.h b/buildtools/lib/parsers/qmake/qmakeastvisitor.h index 6978074c..87be089f 100644 --- a/buildtools/lib/parsers/qmake/qmakeastvisitor.h +++ b/buildtools/lib/parsers/qmake/qmakeastvisitor.h @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2005 by Alexander Dymo * - * adymo@kdevelop.org * + * adymo@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU Library General Public License as * diff --git a/buildtools/lib/parsers/qmake/qmakedriver.cpp b/buildtools/lib/parsers/qmake/qmakedriver.cpp index 09256178..21023017 100644 --- a/buildtools/lib/parsers/qmake/qmakedriver.cpp +++ b/buildtools/lib/parsers/qmake/qmakedriver.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2005 by Alexander Dymo * - * adymo@kdevelop.org * + * adymo@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU Library General Public License as * diff --git a/buildtools/lib/parsers/qmake/qmakedriver.h b/buildtools/lib/parsers/qmake/qmakedriver.h index ee56f388..62539147 100644 --- a/buildtools/lib/parsers/qmake/qmakedriver.h +++ b/buildtools/lib/parsers/qmake/qmakedriver.h @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2005 by Alexander Dymo * - * adymo@kdevelop.org * + * adymo@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU Library General Public License as * diff --git a/buildtools/lib/parsers/qmake/tests/runner.cpp b/buildtools/lib/parsers/qmake/tests/runner.cpp index 9af86fe7..378ebbed 100644 --- a/buildtools/lib/parsers/qmake/tests/runner.cpp +++ b/buildtools/lib/parsers/qmake/tests/runner.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2005 by Alexander Dymo * - * adymo@kdevelop.org * + * adymo@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU Library General Public License as * diff --git a/buildtools/lib/parsers/qmake/tests/viewer.cpp b/buildtools/lib/parsers/qmake/tests/viewer.cpp index 94bf8ac2..eef16513 100644 --- a/buildtools/lib/parsers/qmake/tests/viewer.cpp +++ b/buildtools/lib/parsers/qmake/tests/viewer.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2005 by Alexander Dymo * - * adymo@kdevelop.org * + * adymo@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU Library General Public License as * diff --git a/buildtools/lib/parsers/qmake/tests/viewer.h b/buildtools/lib/parsers/qmake/tests/viewer.h index 29e8474f..560c9845 100644 --- a/buildtools/lib/parsers/qmake/tests/viewer.h +++ b/buildtools/lib/parsers/qmake/tests/viewer.h @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2005 by Alexander Dymo * - * adymo@kdevelop.org * + * adymo@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU Library General Public License as * diff --git a/buildtools/lib/parsers/qmake/tests/viewer_main.cpp b/buildtools/lib/parsers/qmake/tests/viewer_main.cpp index 199b106d..201837e3 100644 --- a/buildtools/lib/parsers/qmake/tests/viewer_main.cpp +++ b/buildtools/lib/parsers/qmake/tests/viewer_main.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2005 by Alexander Dymo * - * adymo@kdevelop.org * + * adymo@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU Library General Public License as * diff --git a/buildtools/lib/widgets/CMakeLists.txt b/buildtools/lib/widgets/CMakeLists.txt index f892964b..d86d0c66 100644 --- a/buildtools/lib/widgets/CMakeLists.txt +++ b/buildtools/lib/widgets/CMakeLists.txt @@ -33,7 +33,7 @@ install( FILES ${CMAKE_CURRENT_BINARY_DIR}/removesubprojectdlgbase.h ${CMAKE_CURRENT_BINARY_DIR}/runoptionswidgetbase.h ${CMAKE_CURRENT_BINARY_DIR}/subclassesdlgbase.h - DESTINATION ${INCLUDE_INSTALL_DIR}/kdevelop/buildtools/widgets ) + DESTINATION ${INCLUDE_INSTALL_DIR}/tdevelop/buildtools/widgets ) ##### kdevbuildtoolswidgets (shared) ############ @@ -50,6 +50,6 @@ tde_add_library( kdevbuildtoolswidgets SHARED AUTOMOC runoptionswidget.cpp runoptionswidgetbase.ui subclassesdlg.cpp subclassesdlgbase.ui VERSION 0.0.0 - LINK kdevelop-shared + LINK tdevelop-shared DESTINATION ${LIB_INSTALL_DIR} ) diff --git a/buildtools/lib/widgets/Mainpage.dox b/buildtools/lib/widgets/Mainpage.dox index 56884c97..750061c1 100644 --- a/buildtools/lib/widgets/Mainpage.dox +++ b/buildtools/lib/widgets/Mainpage.dox @@ -5,6 +5,6 @@ This library contains widgets commonly used in buildtool support plugins. <b>Link with</b>: -lkdevbuildtoolswidgets -<b>Include path</b>: -I\$(kde_includes)/kdevelop/buildtools/widgets +<b>Include path</b>: -I\$(kde_includes)/tdevelop/buildtools/widgets */ diff --git a/buildtools/lib/widgets/Makefile.am b/buildtools/lib/widgets/Makefile.am index aef5a5c2..d640a831 100644 --- a/buildtools/lib/widgets/Makefile.am +++ b/buildtools/lib/widgets/Makefile.am @@ -17,8 +17,8 @@ libkdevbuildtoolswidgets_la_SOURCES = addenvvardlg.cpp addfilesdialog.cpp \ METASOURCES = AUTO -kdevelopbuildtoolsincludedir = $(includedir)/kdevelop/buildtools/widgets -kdevelopbuildtoolsinclude_HEADERS = addenvvardlg.h addfilesdialog.h \ +tdevelopbuildtoolsincludedir = $(includedir)/tdevelop/buildtools/widgets +tdevelopbuildtoolsinclude_HEADERS = addenvvardlg.h addfilesdialog.h \ environmentvariableswidget.h environmentvariableswidgetbase.h envvartools.h makeoptionswidget.h \ makeoptionswidgetbase.h removesubprojectdialog.h removesubprojectdlgbase.h runoptionswidget.h \ runoptionswidgetbase.h subclassesdlg.h subclassesdlgbase.h diff --git a/buildtools/lib/widgets/addenvvardlg.cpp b/buildtools/lib/widgets/addenvvardlg.cpp index 43033d97..f66bbe93 100644 --- a/buildtools/lib/widgets/addenvvardlg.cpp +++ b/buildtools/lib/widgets/addenvvardlg.cpp @@ -1,5 +1,5 @@ /* This file is part of the KDE project - Copyright (C) 2001 Bernd Gehrmann <bernd@kdevelop.org> + Copyright (C) 2001 Bernd Gehrmann <bernd@tdevelop.org> This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public @@ -23,7 +23,7 @@ #include <kbuttonbox.h> #include <klocale.h> #include <kstdguiitem.h> -#include <kdeversion.h> +#include <tdeversion.h> #include "addenvvardlg.h" diff --git a/buildtools/lib/widgets/addenvvardlg.h b/buildtools/lib/widgets/addenvvardlg.h index 8571d889..e968619a 100644 --- a/buildtools/lib/widgets/addenvvardlg.h +++ b/buildtools/lib/widgets/addenvvardlg.h @@ -1,5 +1,5 @@ /* This file is part of the KDE project - Copyright (C) 2001 Bernd Gehrmann <bernd@kdevelop.org> + Copyright (C) 2001 Bernd Gehrmann <bernd@tdevelop.org> This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/buildtools/lib/widgets/addfilesdialog.h b/buildtools/lib/widgets/addfilesdialog.h index 8cdc913f..24d253dc 100644 --- a/buildtools/lib/widgets/addfilesdialog.h +++ b/buildtools/lib/widgets/addfilesdialog.h @@ -19,7 +19,7 @@ #ifndef ADDFILESDIALOG_H #define ADDFILESDIALOG_H -#include <kdeversion.h> +#include <tdeversion.h> #include <kfiledialog.h> class TQComboBox; diff --git a/buildtools/lib/widgets/environmentvariableswidget.cpp b/buildtools/lib/widgets/environmentvariableswidget.cpp index 3c3e448f..bdebfd28 100644 --- a/buildtools/lib/widgets/environmentvariableswidget.cpp +++ b/buildtools/lib/widgets/environmentvariableswidget.cpp @@ -1,5 +1,5 @@ /* This file is part of the KDE project - Copyright (C) 2001-2002 Bernd Gehrmann <bernd@kdevelop.org> + Copyright (C) 2001-2002 Bernd Gehrmann <bernd@tdevelop.org> Copyright (C) 2003 John Firebaugh <jfirebaugh@kde.org> This library is free software; you can redistribute it and/or diff --git a/buildtools/lib/widgets/environmentvariableswidget.h b/buildtools/lib/widgets/environmentvariableswidget.h index c5218d5c..8d5e7342 100644 --- a/buildtools/lib/widgets/environmentvariableswidget.h +++ b/buildtools/lib/widgets/environmentvariableswidget.h @@ -1,5 +1,5 @@ /* This file is part of the KDE project - Copyright (C) 2001-2002 Bernd Gehrmann <bernd@kdevelop.org> + Copyright (C) 2001-2002 Bernd Gehrmann <bernd@tdevelop.org> Copyright (C) 2003 John Firebaugh <jfirebaugh@kde.org> This library is free software; you can redistribute it and/or diff --git a/buildtools/lib/widgets/makeoptionswidget.cpp b/buildtools/lib/widgets/makeoptionswidget.cpp index ef901cc8..759f4abf 100644 --- a/buildtools/lib/widgets/makeoptionswidget.cpp +++ b/buildtools/lib/widgets/makeoptionswidget.cpp @@ -1,5 +1,5 @@ /* This file is part of the KDE project - Copyright (C) 2001-2002 Bernd Gehrmann <bernd@kdevelop.org> + Copyright (C) 2001-2002 Bernd Gehrmann <bernd@tdevelop.org> This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/buildtools/lib/widgets/makeoptionswidget.h b/buildtools/lib/widgets/makeoptionswidget.h index abbc29d6..5470737c 100644 --- a/buildtools/lib/widgets/makeoptionswidget.h +++ b/buildtools/lib/widgets/makeoptionswidget.h @@ -1,5 +1,5 @@ /* This file is part of the KDE project - Copyright (C) 2001-2002 Bernd Gehrmann <bernd@kdevelop.org> + Copyright (C) 2001-2002 Bernd Gehrmann <bernd@tdevelop.org> This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/buildtools/lib/widgets/runoptionswidget.cpp b/buildtools/lib/widgets/runoptionswidget.cpp index bb2b88b1..0985e037 100644 --- a/buildtools/lib/widgets/runoptionswidget.cpp +++ b/buildtools/lib/widgets/runoptionswidget.cpp @@ -1,5 +1,5 @@ /* This file is part of the KDE project - Copyright (C) 2001-2002 Bernd Gehrmann <bernd@kdevelop.org> + Copyright (C) 2001-2002 Bernd Gehrmann <bernd@tdevelop.org> This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/buildtools/lib/widgets/runoptionswidget.h b/buildtools/lib/widgets/runoptionswidget.h index 9b246742..7a1d9e18 100644 --- a/buildtools/lib/widgets/runoptionswidget.h +++ b/buildtools/lib/widgets/runoptionswidget.h @@ -1,5 +1,5 @@ /* This file is part of the KDE project - Copyright (C) 2001-2002 Bernd Gehrmann <bernd@kdevelop.org> + Copyright (C) 2001-2002 Bernd Gehrmann <bernd@tdevelop.org> This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/buildtools/pascal/Makefile.am b/buildtools/pascal/Makefile.am index d975575a..9bf4fc90 100644 --- a/buildtools/pascal/Makefile.am +++ b/buildtools/pascal/Makefile.am @@ -6,7 +6,7 @@ INCLUDES = -I$(top_srcdir)/buildtools/lib/base \ kde_module_LTLIBRARIES = libkdevpascalproject.la libkdevpascalproject_la_LDFLAGS = $(all_libraries) $(KDE_PLUGIN) -libkdevpascalproject_la_LIBADD = $(top_builddir)/lib/libkdevelop.la \ +libkdevpascalproject_la_LIBADD = $(top_builddir)/lib/libtdevelop.la \ $(top_builddir)/buildtools/lib/widgets/libkdevbuildtoolswidgets.la $(top_builddir)/buildtools/lib/base/libkdevbuildbase.la libkdevpascalproject_la_SOURCES = pascalproject_part.cpp pascalproject_widget.cpp pascalproject_optionsdlgbase.ui pascalprojectoptionsdlg.cpp pascalglobaloptionsdlg.cpp service.cpp diff --git a/buildtools/pascal/pascalproject_part.cpp b/buildtools/pascal/pascalproject_part.cpp index 8a67a023..22261004 100644 --- a/buildtools/pascal/pascalproject_part.cpp +++ b/buildtools/pascal/pascalproject_part.cpp @@ -28,7 +28,7 @@ #include <klibloader.h> #include <kservice.h> #include <kconfig.h> -#include <kdeversion.h> +#include <tdeversion.h> #include <kprocess.h> #include "domutil.h" @@ -59,7 +59,7 @@ PascalProjectPart::PascalProjectPart(TQObject *parent, const char *name, const T setXMLFile("kdevpascalproject.rc"); KAction *action; - 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")); diff --git a/buildtools/pascal/service.cpp b/buildtools/pascal/service.cpp index b49274ea..0179fac8 100644 --- a/buildtools/pascal/service.cpp +++ b/buildtools/pascal/service.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2001-2002 by Bernd Gehrmann * - * bernd@kdevelop.org * + * bernd@tdevelop.org * * Copyright (C) 2003 Alexander Dymo * * cloudtemple@mksat.net * * * diff --git a/buildtools/pascal/service.h b/buildtools/pascal/service.h index 26c302fd..e9fdad56 100644 --- a/buildtools/pascal/service.h +++ b/buildtools/pascal/service.h @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2001-2002 by Bernd Gehrmann * - * bernd@kdevelop.org * + * bernd@tdevelop.org * * Copyright (C) 2003 Alexander Dymo * * cloudtemple@mksat.net * * * diff --git a/buildtools/qmake/Makefile.am b/buildtools/qmake/Makefile.am index 6b65901a..b50fc775 100644 --- a/buildtools/qmake/Makefile.am +++ b/buildtools/qmake/Makefile.am @@ -10,7 +10,7 @@ INCLUDES = -I$(top_srcdir)/buildtools/lib/base \ kde_module_LTLIBRARIES = libkdevtrollproject.la libkdevtrollproject_la_LDFLAGS = $(all_libraries) $(KDE_PLUGIN) -libkdevtrollproject_la_LIBADD = $(top_builddir)/lib/libkdevelop.la \ +libkdevtrollproject_la_LIBADD = $(top_builddir)/lib/libtdevelop.la \ $(top_builddir)/lib/util/libkdevutil.la $(top_builddir)/buildtools/lib/widgets/libkdevbuildtoolswidgets.la \ $(top_builddir)/buildtools/lib/base/libkdevbuildbase.la \ $(top_builddir)/buildtools/lib/parsers/qmake/libkdevqmakeparser.la diff --git a/buildtools/qmake/README.dox b/buildtools/qmake/README.dox index 6f0a4027..e475aba1 100644 --- a/buildtools/qmake/README.dox +++ b/buildtools/qmake/README.dox @@ -8,7 +8,7 @@ It will regenerate a projects .pro files dynamically as you add,remove or reconfigure (sub)projects. Unsupported qmake features will be left unchanged (hopefully) no major testing has been run yet. -\authors <a href="mailto:bernd AT kdevelop.org">Bernd Gehrmann</a> +\authors <a href="mailto:bernd AT tdevelop.org">Bernd Gehrmann</a> \authors <a href="mailto:thasart AT gmx.de">Thomas Hasart</a> \maintainer <a href="mailto:jsgaarde AT tdcspace.dk">Jakob Simon-Gaarde </a> @@ -21,12 +21,12 @@ remove or reconfigure (sub)projects. \feature Unsupported qmake features will be left unchanged (hopefully) no major testing has been run yet. -\bug bugs in <a href="http://bugs.kde.org/buglist.cgi?product=kdevelop&component=trollproject&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&order=Bug+Number">trollproject component at Bugzilla database</a> +\bug bugs in <a href="http://bugs.kde.org/buglist.cgi?product=tdevelop&component=trollproject&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&order=Bug+Number">trollproject component at Bugzilla database</a> \requirement <a href="http://www.trolltech.com">QMake</a> >= 3.0.3 \todo <b>Relative directories (priority 1)</b> - By default a qmake projects created with kdevelop must be distributable, + By default a qmake projects created with tdevelop must be distributable, therefore all directory-selections must be relative the subproject where it is used (user can override this ofcourse). So when a select-directory dialog is opened getRelativeDirectory() (#include pathutil.h) should be diff --git a/buildtools/qmake/newwidgetdlg.cpp b/buildtools/qmake/newwidgetdlg.cpp index 44dd7588..ab3e72f7 100644 --- a/buildtools/qmake/newwidgetdlg.cpp +++ b/buildtools/qmake/newwidgetdlg.cpp @@ -59,7 +59,7 @@ void NewWidgetDlg::accept() //========================= { TQDomDocument doc; - DomUtil::openDOMFile(doc,"/home/jsgaarde/programming/kdevelop/domapp/clean_dialog.ui"); + DomUtil::openDOMFile(doc,"/home/jsgaarde/programming/tdevelop/domapp/clean_dialog.ui"); DomUtil::replaceText(doc,WIDGET_CLASS_NAME,"TestClass"); DomUtil::replaceText(doc,WIDGET_CAPTION_NAME,"Test Dialog"); TQDomElement slotsElem = DomUtil::elementByPathExt(doc,WIDGET_SLOTS); @@ -74,7 +74,7 @@ void NewWidgetDlg::accept() slotelem.attributeNode("access").value().ascii()); TQMessageBox::information(0,"Slots",msg); } - DomUtil::saveDOMFile(doc,"/home/jsgaarde/programming/kdevelop/domapp/clean_dialog2.ui"); + DomUtil::saveDOMFile(doc,"/home/jsgaarde/programming/tdevelop/domapp/clean_dialog2.ui"); NewWidgetDlgBase::accept(); } diff --git a/buildtools/qmake/projectconfigurationdlg.h b/buildtools/qmake/projectconfigurationdlg.h index 75ad578d..50014e55 100644 --- a/buildtools/qmake/projectconfigurationdlg.h +++ b/buildtools/qmake/projectconfigurationdlg.h @@ -20,7 +20,7 @@ #include "projectconfigurationdlgbase.h" //#include "trollprojectwidget.h" -#include <kdeversion.h> +#include <tdeversion.h> #include <tqlistview.h> #include <klistview.h> #include <tqmap.h> diff --git a/buildtools/qmake/trollprojectpart.cpp b/buildtools/qmake/trollprojectpart.cpp index 66c2794d..abd26606 100644 --- a/buildtools/qmake/trollprojectpart.cpp +++ b/buildtools/qmake/trollprojectpart.cpp @@ -2,7 +2,7 @@ * Copyright (C) 2003 by Thomas Hasart * * thasart@gmx.de * * Copyright (C) 2001-2002 by Bernd Gehrmann * - * bernd@kdevelop.org * + * bernd@tdevelop.org * * Copyright (C) 2002 by Jakob Simon-Gaarde * * jakob@jsg.dk * * * @@ -18,7 +18,7 @@ #include <tqdir.h> #include <tqfileinfo.h> #include <tqwhatsthis.h> -#include <kdeversion.h> +#include <tdeversion.h> #include <kdebug.h> #include <kdialogbase.h> #include <kiconloader.h> @@ -100,7 +100,7 @@ TrollProjectPart::TrollProjectPart(TQObject *parent, const char *name, const TQS "in the project settings dialog, <b>Make Options</b> tab.")); - action = new KAction( i18n("&Build Project"), "make_kdevelop", Key_F8, + action = new KAction( i18n("&Build Project"), "make_tdevelop", Key_F8, TQT_TQOBJECT(m_widget), TQT_SLOT(slotBuildProject()), actionCollection(), "build_build_project" ); action->setToolTip(i18n("Build project")); @@ -146,7 +146,7 @@ TrollProjectPart::TrollProjectPart(TQObject *parent, const char *name, const TQS action->setToolTip(i18n("Execute main program")); action->setWhatsThis(i18n("<b>Execute program</b><p>Executes the currently selected subproject if it is an application or the program specified in project settings, <b>Run Options</b> tab.")); - action = new KAction( i18n("&Build Subproject"), "make_kdevelop", Key_F7, + action = new KAction( i18n("&Build Subproject"), "make_tdevelop", Key_F7, TQT_TQOBJECT(m_widget), TQT_SLOT(slotBuildTarget()), actionCollection(), "build_build_target" ); action->setToolTip(i18n("Build subproject")); diff --git a/buildtools/qmake/trollprojectpart.h b/buildtools/qmake/trollprojectpart.h index f000acf9..480eb926 100644 --- a/buildtools/qmake/trollprojectpart.h +++ b/buildtools/qmake/trollprojectpart.h @@ -2,7 +2,7 @@ * Copyright (C) 2003 by Thomas Hasart * * thasart@gmx.de * * Copyright (C) 2001-2002 by Bernd Gehrmann * - * bernd@kdevelop.org * + * bernd@tdevelop.org * * Copyright (C) 2002 by Jakob Simon-Gaarde * * jakob@jsg.dk * * * diff --git a/buildtools/qmake/trollprojectwidget.cpp b/buildtools/qmake/trollprojectwidget.cpp index ad57b792..f2aca642 100644 --- a/buildtools/qmake/trollprojectwidget.cpp +++ b/buildtools/qmake/trollprojectwidget.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2001 by Bernd Gehrmann * -* bernd@kdevelop.org * +* bernd@tdevelop.org * * Copyright (C) 2000-2001 by Trolltech AS. * * info@trolltech.com * * Copyright (C) 2002 by Jakob Simon-Gaarde * @@ -53,7 +53,7 @@ #include <kaction.h> #include <kprocess.h> #include <kinputdialog.h> -#include <kdeversion.h> +#include <tdeversion.h> #include <kdirwatch.h> #include <kurlrequesterdlg.h> #include <kurlrequester.h> @@ -118,7 +118,7 @@ TrollProjectWidget::TrollProjectWidget( TrollProjectPart *part ) // build buildProjectButton = new TQToolButton ( projectTools, "Make button" ); - buildProjectButton->setPixmap ( SmallIcon ( "make_kdevelop" ) ); + buildProjectButton->setPixmap ( SmallIcon ( "make_tdevelop" ) ); buildProjectButton->tqsetSizePolicy ( TQSizePolicy ( ( TQSizePolicy::SizeType ) 0, ( TQSizePolicy::SizeType ) 0, 0, 0, buildProjectButton->sizePolicy().hasHeightForWidth() ) ); buildProjectButton->setEnabled ( true ); TQToolTip::add( buildProjectButton, i18n( "Build project" ) ); @@ -234,7 +234,7 @@ TrollProjectWidget::TrollProjectWidget( TrollProjectPart *part ) // build buildTargetButton = new TQToolButton ( fileTools, "Make sp button" ); - buildTargetButton->setPixmap ( SmallIcon ( "make_kdevelop" ) ); + buildTargetButton->setPixmap ( SmallIcon ( "make_tdevelop" ) ); buildTargetButton->tqsetSizePolicy ( TQSizePolicy ( ( TQSizePolicy::SizeType ) 0, ( TQSizePolicy::SizeType ) 0, 0, 0, buildTargetButton->sizePolicy().hasHeightForWidth() ) ); buildTargetButton->setEnabled ( true ); TQToolTip::add( buildTargetButton, i18n( "Build subproject" ) ); @@ -954,7 +954,7 @@ void TrollProjectWidget::slotRemoveSubproject( QMakeScopeItem *spitem ) if( !spitem->scope->deleteSubProject( m_shownSubproject->scope->getNum(), delsubdir ) ) { KMessageBox::error(this, i18n("Could not delete subproject.\nThis is an internal error, please write a" - " bug report to bugs.kde.org and include the output of kdevelop when run" + " bug report to bugs.kde.org and include the output of tdevelop when run" "from a shell."),i18n("Subproject Deletion failed")); return; } @@ -993,7 +993,7 @@ void TrollProjectWidget::slotOverviewContextMenu( KListView *, TQListViewItem *i if ( spitem->scope->scopeType() == Scope::ProjectScope && ( !spitem->scope->parent() || spitem->scope->parent()->scopeType() == Scope::ProjectScope ) ) { - idBuild = popup.insertItem( SmallIcon( "make_kdevelop" ), i18n( "Build" ) ); + idBuild = popup.insertItem( SmallIcon( "make_tdevelop" ), i18n( "Build" ) ); popup.tqsetWhatsThis( idBuild, i18n( "<b>Build</b><p>Runs <b>make</b> from the selected subproject directory.<br>" "Environment variables and make arguments can be specified " "in the project settings dialog, <b>Make Options</b> tab." ) ); @@ -1814,7 +1814,7 @@ void TrollProjectWidget::slotDetailsContextMenu( KListView *, TQListViewItem *it } if ( gitem->groupType == GroupItem::Sources ) { - idBuildFile = popup.insertItem( SmallIconSet( "make_kdevelop" ), i18n( "Build File" ) ); + idBuildFile = popup.insertItem( SmallIconSet( "make_tdevelop" ), i18n( "Build File" ) ); popup.tqsetWhatsThis( idBuildFile, i18n( "<b>Build File</b><p>Builds the object file for this source file." ) ); } @@ -2273,7 +2273,7 @@ void TrollProjectWidget::slotRemoveScope( QMakeScopeItem * spitem ) case Scope::FunctionScope: if( !pitem->scope->deleteFunctionScope( spitem->scope->getNum() ) ) { - KMessageBox::error(this, i18n("Could not delete Function Scope.\nThis is an internal error, please write a bug report to bugs.kde.org and include the output of kdevelop when run from a shell."),i18n("Function Scope Deletion failed")); + KMessageBox::error(this, i18n("Could not delete Function Scope.\nThis is an internal error, please write a bug report to bugs.kde.org and include the output of tdevelop when run from a shell."),i18n("Function Scope Deletion failed")); return; } // pitem->scopes.remove( spitem ); @@ -2281,7 +2281,7 @@ void TrollProjectWidget::slotRemoveScope( QMakeScopeItem * spitem ) case Scope::IncludeScope: if( !pitem->scope->deleteIncludeScope( spitem->scope->getNum() ) ) { - KMessageBox::error(this, i18n("Could not delete Include Scope.\nThis is an internal error, please write a bug report to bugs.kde.org and include the output of kdevelop when run from a shell."),i18n("Include Scope Deletion failed")); + KMessageBox::error(this, i18n("Could not delete Include Scope.\nThis is an internal error, please write a bug report to bugs.kde.org and include the output of tdevelop when run from a shell."),i18n("Include Scope Deletion failed")); return; } // pitem->scopes.remove( spitem ); @@ -2293,7 +2293,7 @@ void TrollProjectWidget::slotRemoveScope( QMakeScopeItem * spitem ) case Scope::SimpleScope: if( !pitem->scope->deleteSimpleScope( spitem->scope->getNum() ) ) { - KMessageBox::error(this, i18n("Could not delete Scope.\nThis is an internal error, please write a bug report to bugs.kde.org and include the output of kdevelop when run from a shell."),i18n("Scope Deletion failed")); + KMessageBox::error(this, i18n("Could not delete Scope.\nThis is an internal error, please write a bug report to bugs.kde.org and include the output of tdevelop when run from a shell."),i18n("Scope Deletion failed")); return; } // pitem->scopes.remove( spitem ); diff --git a/buildtools/qmake/trollprojectwidget.h b/buildtools/qmake/trollprojectwidget.h index 5d07c798..3115a0df 100644 --- a/buildtools/qmake/trollprojectwidget.h +++ b/buildtools/qmake/trollprojectwidget.h @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2001 by Bernd Gehrmann * -* bernd@kdevelop.org * +* bernd@tdevelop.org * * Copyright (C) 2002 by Jakob Simon-Gaarde * * jakob@jsg.dk * * Copyright (C) 2002-2003 by Alexander Dymo * @@ -28,7 +28,7 @@ #include <tqtoolbutton.h> #include <kiconloader.h> #include <klocale.h> -#include <kdeversion.h> +#include <tdeversion.h> #include <tqbutton.h> #include <tqfileinfo.h> #include <tqptrlist.h> diff --git a/buildtools/script/Makefile.am b/buildtools/script/Makefile.am index 73cee869..542b1a69 100644 --- a/buildtools/script/Makefile.am +++ b/buildtools/script/Makefile.am @@ -12,7 +12,7 @@ INCLUDES = -I$(top_srcdir)/buildtools/lib/base \ kde_module_LTLIBRARIES = libkdevscriptproject.la libkdevscriptproject_la_LDFLAGS = $(all_libraries) $(KDE_PLUGIN) -libkdevscriptproject_la_LIBADD = $(top_builddir)/lib/libkdevelop.la \ +libkdevscriptproject_la_LIBADD = $(top_builddir)/lib/libtdevelop.la \ $(top_builddir)/buildtools/lib/widgets/libkdevbuildtoolswidgets.la $(top_builddir)/buildtools/lib/base/libkdevbuildbase.la libkdevscriptproject_la_SOURCES = scriptprojectpart.cpp scriptoptionswidget.cpp scriptoptionswidgetbase.ui scriptnewfiledlg.cpp diff --git a/buildtools/script/README.dox b/buildtools/script/README.dox index a7a19983..dc3d9f0c 100644 --- a/buildtools/script/README.dox +++ b/buildtools/script/README.dox @@ -5,7 +5,7 @@ over several lines. You can even use some html commands in these lines like: <code>This is code</code>, html links <a href="http://somelocation">link text</a>, and images. -\authors <a href="mailto:bernd AT kdevelop.org">Bernd Gehrmann</a> +\authors <a href="mailto:bernd AT tdevelop.org">Bernd Gehrmann</a> \unmaintained This part is currently un-maintained diff --git a/buildtools/script/kdevscriptproject.desktop b/buildtools/script/kdevscriptproject.desktop index 1200f9ba..f798dcb4 100644 --- a/buildtools/script/kdevscriptproject.desktop +++ b/buildtools/script/kdevscriptproject.desktop @@ -82,6 +82,6 @@ GenericName[tr]=Betik Dili Projesi GenericName[zh_CN]=脚本è¯è¨€å·¥ç¨‹ GenericName[zh_TW]=文稿語言專案 ServiceTypes=KDevelop/Project -Icon=kdevelop +Icon=tdevelop X-KDE-Library=libkdevscriptproject X-KDevelop-Version=5 diff --git a/buildtools/script/scriptnewfiledlg.cpp b/buildtools/script/scriptnewfiledlg.cpp index 0e838612..e5d72bcf 100644 --- a/buildtools/script/scriptnewfiledlg.cpp +++ b/buildtools/script/scriptnewfiledlg.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2001-2002 by Bernd Gehrmann * - * bernd@kdevelop.org * + * bernd@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -23,7 +23,7 @@ #include <klocale.h> #include <kmessagebox.h> #include <kstdguiitem.h> -#include <kdeversion.h> +#include <tdeversion.h> #include "scriptprojectpart.h" #include "filetemplate.h" diff --git a/buildtools/script/scriptnewfiledlg.h b/buildtools/script/scriptnewfiledlg.h index fa1ca53d..9ecd01cf 100644 --- a/buildtools/script/scriptnewfiledlg.h +++ b/buildtools/script/scriptnewfiledlg.h @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2001-2002 by Bernd Gehrmann * - * bernd@kdevelop.org * + * bernd@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * diff --git a/buildtools/script/scriptoptionswidget.cpp b/buildtools/script/scriptoptionswidget.cpp index d80cd501..bd541d64 100644 --- a/buildtools/script/scriptoptionswidget.cpp +++ b/buildtools/script/scriptoptionswidget.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2002 by Bernd Gehrmann * - * bernd@kdevelop.org * + * bernd@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * diff --git a/buildtools/script/scriptoptionswidget.h b/buildtools/script/scriptoptionswidget.h index f5d6e071..155b4253 100644 --- a/buildtools/script/scriptoptionswidget.h +++ b/buildtools/script/scriptoptionswidget.h @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2002 by Bernd Gehrmann * - * bernd@kdevelop.org * + * bernd@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * diff --git a/buildtools/script/scriptprojectpart.cpp b/buildtools/script/scriptprojectpart.cpp index 4505368b..fb457112 100644 --- a/buildtools/script/scriptprojectpart.cpp +++ b/buildtools/script/scriptprojectpart.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2001-2002 by Bernd Gehrmann * - * bernd@kdevelop.org * + * bernd@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -72,7 +72,7 @@ ScriptProjectPart::~ScriptProjectPart() void ScriptProjectPart::projectConfigWidget(KDialogBase *dlg) { TQVBox *vbox; - vbox = dlg->addVBoxPage(i18n("Script Project Options"), i18n("Script Project Options"), BarIcon("kdevelop", KIcon::SizeMedium)); + vbox = dlg->addVBoxPage(i18n("Script Project Options"), i18n("Script Project Options"), BarIcon("tdevelop", KIcon::SizeMedium)); ScriptOptionsWidget *w = new ScriptOptionsWidget(this, vbox); connect( dlg, TQT_SIGNAL(okClicked()), w, TQT_SLOT(accept()) ); } diff --git a/buildtools/script/scriptprojectpart.h b/buildtools/script/scriptprojectpart.h index 03b21996..aa5a69ae 100644 --- a/buildtools/script/scriptprojectpart.h +++ b/buildtools/script/scriptprojectpart.h @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2001-2002 by Bernd Gehrmann * - * bernd@kdevelop.org * + * bernd@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * |