summaryrefslogtreecommitdiffstats
path: root/buildtools/lib
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-16 13:53:18 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-16 13:53:18 -0600
commit2ecab1a194b0dc551b478820e1aaa3b8713354cc (patch)
treeae4df71ed26f3dc2dd605970d8d455165a1c8ab3 /buildtools/lib
parent549fec618f0b15c9316fc0a5ebe93c2829bc0b1b (diff)
downloadtdevelop-2ecab1a194b0dc551b478820e1aaa3b8713354cc.tar.gz
tdevelop-2ecab1a194b0dc551b478820e1aaa3b8713354cc.zip
Additional renaming of kde to tde
Diffstat (limited to 'buildtools/lib')
-rw-r--r--buildtools/lib/base/CMakeLists.txt4
-rw-r--r--buildtools/lib/base/Mainpage.dox2
-rw-r--r--buildtools/lib/base/Makefile.am4
-rw-r--r--buildtools/lib/base/kdevbuildtool.cpp2
-rw-r--r--buildtools/lib/base/kdevbuildtool.h4
-rw-r--r--buildtools/lib/parsers/autotools/Mainpage.dox2
-rw-r--r--buildtools/lib/parsers/autotools/autotools.ll2
-rw-r--r--buildtools/lib/parsers/autotools/autotools.yy2
-rw-r--r--buildtools/lib/parsers/autotools/autotools_lex.cpp2
-rw-r--r--buildtools/lib/parsers/autotools/autotools_yacc.cpp2
-rw-r--r--buildtools/lib/parsers/autotools/autotoolsast.cpp2
-rw-r--r--buildtools/lib/parsers/autotools/autotoolsast.h2
-rw-r--r--buildtools/lib/parsers/autotools/autotoolsdriver.cpp2
-rw-r--r--buildtools/lib/parsers/autotools/autotoolsdriver.h2
-rw-r--r--buildtools/lib/parsers/autotools/tests/runner.cpp2
-rw-r--r--buildtools/lib/parsers/autotools/tests/viewer.cpp2
-rw-r--r--buildtools/lib/parsers/autotools/tests/viewer.h2
-rw-r--r--buildtools/lib/parsers/autotools/tests/viewer_main.cpp2
-rw-r--r--buildtools/lib/parsers/qmake/CMakeLists.txt2
-rw-r--r--buildtools/lib/parsers/qmake/Mainpage.dox2
-rw-r--r--buildtools/lib/parsers/qmake/Makefile.am4
-rw-r--r--buildtools/lib/parsers/qmake/qmake.ll2
-rw-r--r--buildtools/lib/parsers/qmake/qmake.yy2
-rw-r--r--buildtools/lib/parsers/qmake/qmake_lex.cpp2
-rw-r--r--buildtools/lib/parsers/qmake/qmake_yacc.hpp2
-rw-r--r--buildtools/lib/parsers/qmake/qmakeast.cpp2
-rw-r--r--buildtools/lib/parsers/qmake/qmakeast.h2
-rw-r--r--buildtools/lib/parsers/qmake/qmakeastvisitor.cpp2
-rw-r--r--buildtools/lib/parsers/qmake/qmakeastvisitor.h2
-rw-r--r--buildtools/lib/parsers/qmake/qmakedriver.cpp2
-rw-r--r--buildtools/lib/parsers/qmake/qmakedriver.h2
-rw-r--r--buildtools/lib/parsers/qmake/tests/runner.cpp2
-rw-r--r--buildtools/lib/parsers/qmake/tests/viewer.cpp2
-rw-r--r--buildtools/lib/parsers/qmake/tests/viewer.h2
-rw-r--r--buildtools/lib/parsers/qmake/tests/viewer_main.cpp2
-rw-r--r--buildtools/lib/widgets/CMakeLists.txt4
-rw-r--r--buildtools/lib/widgets/Mainpage.dox2
-rw-r--r--buildtools/lib/widgets/Makefile.am4
-rw-r--r--buildtools/lib/widgets/addenvvardlg.cpp4
-rw-r--r--buildtools/lib/widgets/addenvvardlg.h2
-rw-r--r--buildtools/lib/widgets/addfilesdialog.h2
-rw-r--r--buildtools/lib/widgets/environmentvariableswidget.cpp2
-rw-r--r--buildtools/lib/widgets/environmentvariableswidget.h2
-rw-r--r--buildtools/lib/widgets/makeoptionswidget.cpp2
-rw-r--r--buildtools/lib/widgets/makeoptionswidget.h2
-rw-r--r--buildtools/lib/widgets/runoptionswidget.cpp2
-rw-r--r--buildtools/lib/widgets/runoptionswidget.h2
47 files changed, 54 insertions, 54 deletions
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