summaryrefslogtreecommitdiffstats
path: root/buildtools/lib/base
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2014-05-25 15:37:31 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2014-05-25 15:37:31 +0900
commit6392f5a9dfce2bf83617d49bb7f332181ec6004e (patch)
treeab69e390f7962b7e7dda1a3a64f035c61c751cf4 /buildtools/lib/base
parentaba2788b428dc53243407902e9ccbb20b97a69fd (diff)
downloadtdevelop-6392f5a9dfce2bf83617d49bb7f332181ec6004e.tar.gz
tdevelop-6392f5a9dfce2bf83617d49bb7f332181ec6004e.zip
Revert "Finish renaming tdevelop components"
This reverts commit 722ce1efbac31c61b1d4b13f7e075c9f311e3e73.
Diffstat (limited to 'buildtools/lib/base')
-rw-r--r--buildtools/lib/base/CMakeLists.txt8
-rw-r--r--buildtools/lib/base/Mainpage.dox4
-rw-r--r--buildtools/lib/base/Makefile.am16
-rw-r--r--buildtools/lib/base/kdevbuildtool.cpp (renamed from buildtools/lib/base/tdevbuildtool.cpp)18
-rw-r--r--buildtools/lib/base/kdevbuildtool.h (renamed from buildtools/lib/base/tdevbuildtool.h)18
5 files changed, 32 insertions, 32 deletions
diff --git a/buildtools/lib/base/CMakeLists.txt b/buildtools/lib/base/CMakeLists.txt
index a429be6c..f3585669 100644
--- a/buildtools/lib/base/CMakeLists.txt
+++ b/buildtools/lib/base/CMakeLists.txt
@@ -26,14 +26,14 @@ link_directories(
##### headers ###################################
install( FILES
- tdevbuildtool.h
+ kdevbuildtool.h
DESTINATION ${INCLUDE_INSTALL_DIR}/tdevelop/buildtools/base )
-##### tdevbuildbase (shared) ####################
+##### kdevbuildbase (shared) ####################
-tde_add_library( tdevbuildbase SHARED AUTOMOC
- SOURCES tdevbuildtool.cpp
+tde_add_library( kdevbuildbase SHARED AUTOMOC
+ SOURCES kdevbuildtool.cpp
VERSION 0.0.0
LINK tdevelop-shared
DESTINATION ${LIB_INSTALL_DIR}
diff --git a/buildtools/lib/base/Mainpage.dox b/buildtools/lib/base/Mainpage.dox
index 8a85d338..3e16d2d8 100644
--- a/buildtools/lib/base/Mainpage.dox
+++ b/buildtools/lib/base/Mainpage.dox
@@ -8,8 +8,8 @@ This library contains base classes for KDevelop builtool support plugins.
<b>Include path</b>: -I\$(kde_includes)/tdevelop/buildtools/base
\section btbaseoverview Overview
-This library is created to provide TDevBuildTool compat class which can be used
-as drop-in replacement of TDevProject class for buildtool support plugins
+This library is created to provide KDevBuildTool compat class which can be used
+as drop-in replacement of KDevProject class for buildtool support plugins
written for old KDevelop architecture (before version 3.2).
Nevertheless, it can be useful for new buildtool plugins as well because it provides
diff --git a/buildtools/lib/base/Makefile.am b/buildtools/lib/base/Makefile.am
index 6532398d..7e1083ef 100644
--- a/buildtools/lib/base/Makefile.am
+++ b/buildtools/lib/base/Makefile.am
@@ -2,14 +2,14 @@ INCLUDES = -I$(top_srcdir)/lib/interfaces \
-I$(top_srcdir)/lib/interfaces/extensions -I$(top_srcdir)/lib/util -I$(top_srcdir)/lib/widgets/propeditor \
$(all_includes)
METASOURCES = AUTO
-lib_LTLIBRARIES = libtdevbuildbase.la
-libtdevbuildbase_la_LDFLAGS = $(all_libraries)
-libtdevbuildbase_la_LIBADD = $(top_builddir)/lib/interfaces/libtdevinterfaces.la $(LIB_QT) $(LIB_TDEUI)
-libtdevbuildbase_la_SOURCES = tdevbuildtool.cpp
+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
tdevelopbuildtoolsincludedir = $(includedir)/tdevelop/buildtools/base
-tdevelopbuildtoolsinclude_HEADERS = tdevbuildtool.h
+tdevelopbuildtoolsinclude_HEADERS = kdevbuildtool.h
-DOXYGEN_REFERENCES = dcop interfaces tdecore tdefx tdeui tdehtml tdemdi tdeio kjs tdeparts tdeutils tdevutil tdevinterfaces tdevextensions
-DOXYGEN_PROJECTNAME = TDevelop Buildtool Base Library
-DOXYGEN_DOCDIRPREFIX = tdevbt
+DOXYGEN_REFERENCES = dcop interfaces tdecore tdefx tdeui tdehtml tdemdi tdeio kjs tdeparts tdeutils kdevutil kdevinterfaces kdevextensions
+DOXYGEN_PROJECTNAME = KDevelop Buildtool Base Library
+DOXYGEN_DOCDIRPREFIX = kdevbt
include ../../../Doxyfile.am
diff --git a/buildtools/lib/base/tdevbuildtool.cpp b/buildtools/lib/base/kdevbuildtool.cpp
index aa901bb7..618f02d9 100644
--- a/buildtools/lib/base/tdevbuildtool.cpp
+++ b/buildtools/lib/base/kdevbuildtool.cpp
@@ -16,23 +16,23 @@
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
-#include "tdevbuildtool.h"
+#include "kdevbuildtool.h"
-#include <tdevmakefrontend.h>
-#include <tdevappfrontend.h>
+#include <kdevmakefrontend.h>
+#include <kdevappfrontend.h>
-TDevBuildTool::TDevBuildTool(const TDevPluginInfo* info, TQObject* parent, const char* name)
- :TDevProject(info, parent, name)
+KDevBuildTool::KDevBuildTool(const KDevPluginInfo* info, TQObject* parent, const char* name)
+ :KDevProject(info, parent, name)
{
}
-TDevMakeFrontend * TDevBuildTool::makeFrontend()
+KDevMakeFrontend * KDevBuildTool::makeFrontend()
{
- return extension<TDevMakeFrontend>("TDevelop/MakeFrontend");
+ return extension<KDevMakeFrontend>("TDevelop/MakeFrontend");
}
-TDevAppFrontend * TDevBuildTool::appFrontend()
+KDevAppFrontend * KDevBuildTool::appFrontend()
{
- return extension<TDevAppFrontend>("TDevelop/AppFrontend");
+ return extension<KDevAppFrontend>("TDevelop/AppFrontend");
}
diff --git a/buildtools/lib/base/tdevbuildtool.h b/buildtools/lib/base/kdevbuildtool.h
index b6899f9b..ff1abcc0 100644
--- a/buildtools/lib/base/tdevbuildtool.h
+++ b/buildtools/lib/base/kdevbuildtool.h
@@ -17,24 +17,24 @@
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
-#ifndef TDEVBUILDTOOL_H
-#define TDEVBUILDTOOL_H
+#ifndef KDEVBUILDTOOL_H
+#define KDEVBUILDTOOL_H
-#include <tdevproject.h>
+#include <kdevproject.h>
-class TDevMakeFrontend;
-class TDevAppFrontend;
+class KDevMakeFrontend;
+class KDevAppFrontend;
/**Base class for KDevelop build tool support plugins.*/
-class TDevBuildTool: public TDevProject
+class KDevBuildTool: public KDevProject
{
public:
- TDevBuildTool(const TDevPluginInfo* info, TQObject* parent, const char* name);
+ KDevBuildTool(const KDevPluginInfo* info, TQObject* parent, const char* name);
/**@return The make frontend.*/
- TDevMakeFrontend *makeFrontend();
+ KDevMakeFrontend *makeFrontend();
/**@return The application frontend.*/
- TDevAppFrontend *appFrontend();
+ KDevAppFrontend *appFrontend();
};