diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2014-03-02 20:05:33 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2014-03-02 20:05:33 +0100 |
commit | 722ce1efbac31c61b1d4b13f7e075c9f311e3e73 (patch) | |
tree | db1b6b28566e5fe9accb4a688f7257673cecb080 /languages/pascal/compiler | |
parent | afb74575caf7dd8ccb6c235b1c8d788e320c19da (diff) | |
download | tdevelop-722ce1efbac31c61b1d4b13f7e075c9f311e3e73.tar.gz tdevelop-722ce1efbac31c61b1d4b13f7e075c9f311e3e73.zip |
Finish renaming tdevelop components
Diffstat (limited to 'languages/pascal/compiler')
-rw-r--r-- | languages/pascal/compiler/Makefile.am | 2 | ||||
-rw-r--r-- | languages/pascal/compiler/dccoptions/CMakeLists.txt | 8 | ||||
-rw-r--r-- | languages/pascal/compiler/dccoptions/Makefile.am | 12 | ||||
-rw-r--r-- | languages/pascal/compiler/dccoptions/dccoptionsplugin.cpp | 4 | ||||
-rw-r--r-- | languages/pascal/compiler/dccoptions/dccoptionsplugin.h | 4 | ||||
-rw-r--r-- | languages/pascal/compiler/dccoptions/tdevdccoptions.desktop (renamed from languages/pascal/compiler/dccoptions/kdevdccoptions.desktop) | 2 | ||||
-rw-r--r-- | languages/pascal/compiler/fpcoptions/CMakeLists.txt | 8 | ||||
-rw-r--r-- | languages/pascal/compiler/fpcoptions/Makefile.am | 12 | ||||
-rw-r--r-- | languages/pascal/compiler/fpcoptions/fpcoptionsplugin.cpp | 4 | ||||
-rw-r--r-- | languages/pascal/compiler/fpcoptions/fpcoptionsplugin.h | 4 | ||||
-rw-r--r-- | languages/pascal/compiler/fpcoptions/tdevfpcoptions.desktop (renamed from languages/pascal/compiler/fpcoptions/kdevfpcoptions.desktop) | 2 |
11 files changed, 31 insertions, 31 deletions
diff --git a/languages/pascal/compiler/Makefile.am b/languages/pascal/compiler/Makefile.am index c9f7528b..400962be 100644 --- a/languages/pascal/compiler/Makefile.am +++ b/languages/pascal/compiler/Makefile.am @@ -1,6 +1,6 @@ # This is the collection of plugins. In contrast to the parts # directory, these are 'transient' in a sense and don't -# share the complete KDevComponent interface. +# share the complete TDevComponent interface. SUBDIRS = dccoptions fpcoptions diff --git a/languages/pascal/compiler/dccoptions/CMakeLists.txt b/languages/pascal/compiler/dccoptions/CMakeLists.txt index ae6c6388..3e7fbcdd 100644 --- a/languages/pascal/compiler/dccoptions/CMakeLists.txt +++ b/languages/pascal/compiler/dccoptions/CMakeLists.txt @@ -25,13 +25,13 @@ link_directories( ##### other data ################################ -install( FILES kdevdccoptions.desktop DESTINATION ${SERVICES_INSTALL_DIR} ) +install( FILES tdevdccoptions.desktop DESTINATION ${SERVICES_INSTALL_DIR} ) -##### libkdevdccoptions (module) ################ +##### libtdevdccoptions (module) ################ -tde_add_kpart( libkdevdccoptions AUTOMOC +tde_add_kpart( libtdevdccoptions AUTOMOC SOURCES dccoptionsplugin.cpp optiontabs.cpp - LINK kdevwidgets-shared kdevextras-shared + LINK tdevwidgets-shared tdevextras-shared DESTINATION ${PLUGIN_INSTALL_DIR} ) diff --git a/languages/pascal/compiler/dccoptions/Makefile.am b/languages/pascal/compiler/dccoptions/Makefile.am index 734e63c5..f913ae45 100644 --- a/languages/pascal/compiler/dccoptions/Makefile.am +++ b/languages/pascal/compiler/dccoptions/Makefile.am @@ -3,14 +3,14 @@ INCLUDES = -I$(top_srcdir)/lib/interfaces -I$(top_srcdir)/lib/interfaces/extras \ -I$(top_srcdir)/lib/widgets $(all_includes) -kde_module_LTLIBRARIES = libkdevdccoptions.la -libkdevdccoptions_la_LDFLAGS = -module $(all_libraries) $(KDE_PLUGIN) -libkdevdccoptions_la_LIBADD = $(top_builddir)/lib/libtdevelop.la \ - $(top_builddir)/lib/widgets/libkdevwidgets.la $(top_builddir)/lib/interfaces/extras/libkdevextras.la $(LIB_TDEHTML) +kde_module_LTLIBRARIES = libtdevdccoptions.la +libtdevdccoptions_la_LDFLAGS = -module $(all_libraries) $(KDE_PLUGIN) +libtdevdccoptions_la_LIBADD = $(top_builddir)/lib/libtdevelop.la \ + $(top_builddir)/lib/widgets/libtdevwidgets.la $(top_builddir)/lib/interfaces/extras/libtdevextras.la $(LIB_TDEHTML) -libkdevdccoptions_la_SOURCES = dccoptionsplugin.cpp optiontabs.cpp +libtdevdccoptions_la_SOURCES = dccoptionsplugin.cpp optiontabs.cpp METASOURCES = AUTO servicedir = $(kde_servicesdir) -service_DATA = kdevdccoptions.desktop +service_DATA = tdevdccoptions.desktop diff --git a/languages/pascal/compiler/dccoptions/dccoptionsplugin.cpp b/languages/pascal/compiler/dccoptions/dccoptionsplugin.cpp index 8a8ffc54..cffbbdd5 100644 --- a/languages/pascal/compiler/dccoptions/dccoptionsplugin.cpp +++ b/languages/pascal/compiler/dccoptions/dccoptionsplugin.cpp @@ -19,10 +19,10 @@ #include "optiontabs.h" -K_EXPORT_COMPONENT_FACTORY( libkdevdccoptions, KGenericFactory<DccOptionsPlugin>( "kdevdccoptions" ) ) +K_EXPORT_COMPONENT_FACTORY( libtdevdccoptions, KGenericFactory<DccOptionsPlugin>( "tdevdccoptions" ) ) DccOptionsPlugin::DccOptionsPlugin(TQObject *parent, const char *name, const TQStringList/* &args*/) - : KDevCompilerOptions(parent, name) + : TDevCompilerOptions(parent, name) { } diff --git a/languages/pascal/compiler/dccoptions/dccoptionsplugin.h b/languages/pascal/compiler/dccoptions/dccoptionsplugin.h index d8465520..b0db639d 100644 --- a/languages/pascal/compiler/dccoptions/dccoptionsplugin.h +++ b/languages/pascal/compiler/dccoptions/dccoptionsplugin.h @@ -13,9 +13,9 @@ #include <kdialogbase.h> -#include "kdevcompileroptions.h" +#include "tdevcompileroptions.h" -class DccOptionsPlugin : public KDevCompilerOptions +class DccOptionsPlugin : public TDevCompilerOptions { Q_OBJECT diff --git a/languages/pascal/compiler/dccoptions/kdevdccoptions.desktop b/languages/pascal/compiler/dccoptions/tdevdccoptions.desktop index e99e9385..3631eeb9 100644 --- a/languages/pascal/compiler/dccoptions/kdevdccoptions.desktop +++ b/languages/pascal/compiler/dccoptions/tdevdccoptions.desktop @@ -48,7 +48,7 @@ Name[ta]=Dccவிருப்பங்கள் Name[tg]=DccИнтихобҳо Name[zh_TW]=Dcc 選項 ServiceTypes=TDevelop/CompilerOptions -X-TDE-Library=libkdevdccoptions +X-TDE-Library=libtdevdccoptions X-TDevelop-Version=5 X-TDevelop-Language=Pascal X-TDevelop-Args=dcc diff --git a/languages/pascal/compiler/fpcoptions/CMakeLists.txt b/languages/pascal/compiler/fpcoptions/CMakeLists.txt index 12c9ef89..7d9a010f 100644 --- a/languages/pascal/compiler/fpcoptions/CMakeLists.txt +++ b/languages/pascal/compiler/fpcoptions/CMakeLists.txt @@ -25,13 +25,13 @@ link_directories( ##### other data ################################ -install( FILES kdevfpcoptions.desktop DESTINATION ${SERVICES_INSTALL_DIR} ) +install( FILES tdevfpcoptions.desktop DESTINATION ${SERVICES_INSTALL_DIR} ) -##### libkdevfpcoptions (module) ################ +##### libtdevfpcoptions (module) ################ -tde_add_kpart( libkdevfpcoptions AUTOMOC +tde_add_kpart( libtdevfpcoptions AUTOMOC SOURCES fpcoptionsplugin.cpp optiontabs.cpp - LINK kdevwidgets-shared kdevextras-shared + LINK tdevwidgets-shared tdevextras-shared DESTINATION ${PLUGIN_INSTALL_DIR} ) diff --git a/languages/pascal/compiler/fpcoptions/Makefile.am b/languages/pascal/compiler/fpcoptions/Makefile.am index 70579448..3d105f6f 100644 --- a/languages/pascal/compiler/fpcoptions/Makefile.am +++ b/languages/pascal/compiler/fpcoptions/Makefile.am @@ -3,17 +3,17 @@ INCLUDES = -I$(top_srcdir)/lib/interfaces -I$(top_srcdir)/lib/interfaces/extras \ -I$(top_srcdir)/lib/widgets $(all_includes) -kde_module_LTLIBRARIES = libkdevfpcoptions.la -libkdevfpcoptions_la_LDFLAGS = -module $(all_libraries) $(KDE_PLUGIN) -libkdevfpcoptions_la_LIBADD = $(top_builddir)/lib/libtdevelop.la \ - $(top_builddir)/lib/widgets/libkdevwidgets.la $(top_builddir)/lib/interfaces/extras/libkdevextras.la $(LIB_TDEHTML) +kde_module_LTLIBRARIES = libtdevfpcoptions.la +libtdevfpcoptions_la_LDFLAGS = -module $(all_libraries) $(KDE_PLUGIN) +libtdevfpcoptions_la_LIBADD = $(top_builddir)/lib/libtdevelop.la \ + $(top_builddir)/lib/widgets/libtdevwidgets.la $(top_builddir)/lib/interfaces/extras/libtdevextras.la $(LIB_TDEHTML) -libkdevfpcoptions_la_SOURCES = fpcoptionsplugin.cpp optiontabs.cpp +libtdevfpcoptions_la_SOURCES = fpcoptionsplugin.cpp optiontabs.cpp METASOURCES = AUTO servicedir = $(kde_servicesdir) -service_DATA = kdevfpcoptions.desktop +service_DATA = tdevfpcoptions.desktop diff --git a/languages/pascal/compiler/fpcoptions/fpcoptionsplugin.cpp b/languages/pascal/compiler/fpcoptions/fpcoptionsplugin.cpp index 0b01fb01..31babced 100644 --- a/languages/pascal/compiler/fpcoptions/fpcoptionsplugin.cpp +++ b/languages/pascal/compiler/fpcoptions/fpcoptionsplugin.cpp @@ -16,10 +16,10 @@ #include "optiontabs.h" #include "fpcoptionsplugin.h" -K_EXPORT_COMPONENT_FACTORY( libkdevfpcoptions, KGenericFactory<FpcOptionsPlugin>( "kdevfpcoptions" ) ) +K_EXPORT_COMPONENT_FACTORY( libtdevfpcoptions, KGenericFactory<FpcOptionsPlugin>( "tdevfpcoptions" ) ) FpcOptionsPlugin::FpcOptionsPlugin(TQObject *parent, const char *name, const TQStringList& /*args*/) - : KDevCompilerOptions(parent, name) + : TDevCompilerOptions(parent, name) { } diff --git a/languages/pascal/compiler/fpcoptions/fpcoptionsplugin.h b/languages/pascal/compiler/fpcoptions/fpcoptionsplugin.h index e30b33c0..cee18e79 100644 --- a/languages/pascal/compiler/fpcoptions/fpcoptionsplugin.h +++ b/languages/pascal/compiler/fpcoptions/fpcoptionsplugin.h @@ -13,9 +13,9 @@ #include <kdialogbase.h> -#include "kdevcompileroptions.h" +#include "tdevcompileroptions.h" -class FpcOptionsPlugin : public KDevCompilerOptions +class FpcOptionsPlugin : public TDevCompilerOptions { Q_OBJECT diff --git a/languages/pascal/compiler/fpcoptions/kdevfpcoptions.desktop b/languages/pascal/compiler/fpcoptions/tdevfpcoptions.desktop index 660e973d..da25b683 100644 --- a/languages/pascal/compiler/fpcoptions/kdevfpcoptions.desktop +++ b/languages/pascal/compiler/fpcoptions/tdevfpcoptions.desktop @@ -47,7 +47,7 @@ Name[ta]=Fpcவிருப்பங்கள் Name[tg]=FpcИнтихобҳо Name[zh_TW]=Fpc 選項 ServiceTypes=TDevelop/CompilerOptions -X-TDE-Library=libkdevfpcoptions +X-TDE-Library=libtdevfpcoptions X-TDevelop-Version=5 X-TDevelop-Language=Pascal X-TDevelop-Args=fpc |