From 2ecab1a194b0dc551b478820e1aaa3b8713354cc Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Wed, 16 Nov 2011 13:53:18 -0600 Subject: Additional renaming of kde to tde --- buildtools/qmake/Makefile.am | 2 +- buildtools/qmake/README.dox | 6 +++--- buildtools/qmake/newwidgetdlg.cpp | 4 ++-- buildtools/qmake/projectconfigurationdlg.h | 2 +- buildtools/qmake/trollprojectpart.cpp | 8 ++++---- buildtools/qmake/trollprojectpart.h | 2 +- buildtools/qmake/trollprojectwidget.cpp | 20 ++++++++++---------- buildtools/qmake/trollprojectwidget.h | 4 ++-- 8 files changed, 24 insertions(+), 24 deletions(-) (limited to 'buildtools/qmake') 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 Bernd Gehrmann +\authors Bernd Gehrmann \authors Thomas Hasart \maintainer Jakob Simon-Gaarde @@ -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 trollproject component at Bugzilla database +\bug bugs in trollproject component at Bugzilla database \requirement QMake >= 3.0.3 \todo Relative directories (priority 1) - 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 +#include #include #include #include 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 #include #include -#include +#include #include #include #include @@ -100,7 +100,7 @@ TrollProjectPart::TrollProjectPart(TQObject *parent, const char *name, const TQS "in the project settings dialog, Make Options 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("Execute program

Executes the currently selected subproject if it is an application or the program specified in project settings, Run Options 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 #include #include -#include +#include #include #include #include @@ -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( "Build

Runs make from the selected subproject directory.
" "Environment variables and make arguments can be specified " "in the project settings dialog, Make Options 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( "Build File

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 #include #include -#include +#include #include #include #include -- cgit v1.2.1