diff options
author | Timothy Pearson <[email protected]> | 2011-11-16 13:53:18 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-11-16 13:53:18 -0600 |
commit | 2ecab1a194b0dc551b478820e1aaa3b8713354cc (patch) | |
tree | ae4df71ed26f3dc2dd605970d8d455165a1c8ab3 /buildtools/qmake | |
parent | 549fec618f0b15c9316fc0a5ebe93c2829bc0b1b (diff) | |
download | tdevelop-2ecab1a194b0dc551b478820e1aaa3b8713354cc.tar.gz tdevelop-2ecab1a194b0dc551b478820e1aaa3b8713354cc.zip |
Additional renaming of kde to tde
Diffstat (limited to 'buildtools/qmake')
-rw-r--r-- | buildtools/qmake/Makefile.am | 2 | ||||
-rw-r--r-- | buildtools/qmake/README.dox | 6 | ||||
-rw-r--r-- | buildtools/qmake/newwidgetdlg.cpp | 4 | ||||
-rw-r--r-- | buildtools/qmake/projectconfigurationdlg.h | 2 | ||||
-rw-r--r-- | buildtools/qmake/trollprojectpart.cpp | 8 | ||||
-rw-r--r-- | buildtools/qmake/trollprojectpart.h | 2 | ||||
-rw-r--r-- | buildtools/qmake/trollprojectwidget.cpp | 20 | ||||
-rw-r--r-- | buildtools/qmake/trollprojectwidget.h | 4 |
8 files changed, 24 insertions, 24 deletions
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 * * Copyright (C) 2001-2002 by Bernd Gehrmann * - * [email protected] * + * [email protected] * * Copyright (C) 2002 by Jakob Simon-Gaarde * * * @@ -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 * * Copyright (C) 2001-2002 by Bernd Gehrmann * - * [email protected] * + * [email protected] * * Copyright (C) 2002 by Jakob Simon-Gaarde * * * 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 * -* [email protected] * +* [email protected] * * Copyright (C) 2000-2001 by Trolltech AS. * * 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 * -* [email protected] * +* [email protected] * * Copyright (C) 2002 by Jakob Simon-Gaarde * * 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> |