diff options
Diffstat (limited to 'lib/interfaces/extras')
| -rw-r--r-- | lib/interfaces/extras/CMakeLists.txt | 8 | ||||
| -rw-r--r-- | lib/interfaces/extras/Makefile.am | 14 | ||||
| -rw-r--r-- | lib/interfaces/extras/kdevcompileroptions.cpp | 8 | ||||
| -rw-r--r-- | lib/interfaces/extras/tdevcompileroptions.cpp | 8 | ||||
| -rw-r--r-- | lib/interfaces/extras/tdevcompileroptions.h (renamed from lib/interfaces/extras/kdevcompileroptions.h) | 20 | ||||
| -rw-r--r-- | lib/interfaces/extras/tdevvcsintegrator.cpp (renamed from lib/interfaces/extras/kdevvcsintegrator.cpp) | 6 | ||||
| -rw-r--r-- | lib/interfaces/extras/tdevvcsintegrator.h (renamed from lib/interfaces/extras/kdevvcsintegrator.h) | 10 | 
7 files changed, 37 insertions, 37 deletions
| diff --git a/lib/interfaces/extras/CMakeLists.txt b/lib/interfaces/extras/CMakeLists.txt index eb4cdb75..afe233aa 100644 --- a/lib/interfaces/extras/CMakeLists.txt +++ b/lib/interfaces/extras/CMakeLists.txt @@ -22,7 +22,7 @@ link_directories(  ##### headers ###################################  install( FILES -    kdevcompileroptions.h kdevvcsintegrator.h +    tdevcompileroptions.h tdevvcsintegrator.h    DESTINATION ${INCLUDE_INSTALL_DIR}/tdevelop/interfaces/extras )  install( FILES @@ -30,10 +30,10 @@ install( FILES    DESTINATION ${SERVICETYPES_INSTALL_DIR} ) -##### kdevextras (shared) ####################### +##### tdevextras (shared) ####################### -tde_add_library( kdevextras SHARED AUTOMOC -  SOURCES kdevcompileroptions.cpp kdevvcsintegrator.cpp +tde_add_library( tdevextras SHARED AUTOMOC +  SOURCES tdevcompileroptions.cpp tdevvcsintegrator.cpp    VERSION 0.0.0    LINK ${TQT_LIBRARIES}    DESTINATION ${LIB_INSTALL_DIR} diff --git a/lib/interfaces/extras/Makefile.am b/lib/interfaces/extras/Makefile.am index 67615223..c504621e 100644 --- a/lib/interfaces/extras/Makefile.am +++ b/lib/interfaces/extras/Makefile.am @@ -1,18 +1,18 @@  INCLUDES = -I$(top_srcdir)/lib/interfaces/external -I$(top_srcdir)/lib/util \  	$(all_includes)  METASOURCES = AUTO -libkdevextras_la_LIBADD = $(LIB_QT) -libkdevextras_la_LDFLAGS = $(all_libraries) -lib_LTLIBRARIES = libkdevextras.la +libtdevextras_la_LIBADD = $(LIB_QT) +libtdevextras_la_LDFLAGS = $(all_libraries) +lib_LTLIBRARIES = libtdevextras.la  tdevelopincludedir = $(includedir)/tdevelop/interfaces/extras  servicetypedir = $(kde_servicetypesdir) -tdevelopinclude_HEADERS = kdevcompileroptions.h kdevvcsintegrator.h -libkdevextras_la_SOURCES = kdevcompileroptions.cpp kdevvcsintegrator.cpp +tdevelopinclude_HEADERS = tdevcompileroptions.h tdevvcsintegrator.h +libtdevextras_la_SOURCES = tdevcompileroptions.cpp tdevvcsintegrator.cpp  servicetype_DATA = tdevelopcompileroptions.desktop \  	tdevelopvcsintegrator.desktop -DOXYGEN_REFERENCES = dcop interfaces tdecore tdefx tdeui tdehtml tdemdi tdeio kjs tdeparts tdeutils kdevinterfaces +DOXYGEN_REFERENCES = dcop interfaces tdecore tdefx tdeui tdehtml tdemdi tdeio kjs tdeparts tdeutils tdevinterfaces  DOXYGEN_PROJECTNAME = TDevelop Extra Interfaces Library -DOXYGEN_DOCDIRPREFIX = kdev +DOXYGEN_DOCDIRPREFIX = tdev  include ../../../Doxyfile.am diff --git a/lib/interfaces/extras/kdevcompileroptions.cpp b/lib/interfaces/extras/kdevcompileroptions.cpp deleted file mode 100644 index 22c701f1..00000000 --- a/lib/interfaces/extras/kdevcompileroptions.cpp +++ /dev/null @@ -1,8 +0,0 @@ -#include "kdevcompileroptions.h" - -KDevCompilerOptions::KDevCompilerOptions( TQObject * parent, const char * name ) -        :TQObject(parent, name) -{ -} - -#include "kdevcompileroptions.moc" diff --git a/lib/interfaces/extras/tdevcompileroptions.cpp b/lib/interfaces/extras/tdevcompileroptions.cpp new file mode 100644 index 00000000..9eead32f --- /dev/null +++ b/lib/interfaces/extras/tdevcompileroptions.cpp @@ -0,0 +1,8 @@ +#include "tdevcompileroptions.h" + +TDevCompilerOptions::TDevCompilerOptions( TQObject * parent, const char * name ) +        :TQObject(parent, name) +{ +} + +#include "tdevcompileroptions.moc" diff --git a/lib/interfaces/extras/kdevcompileroptions.h b/lib/interfaces/extras/tdevcompileroptions.h index 6544c5d0..b8509a99 100644 --- a/lib/interfaces/extras/kdevcompileroptions.h +++ b/lib/interfaces/extras/tdevcompileroptions.h @@ -19,12 +19,12 @@  */  /** -@file kdevcompileroptions.h +@file tdevcompileroptions.h  The interface to compiler options configuration.  */ -#ifndef _KDEVCOMPILEROPTIONS_H_ -#define _KDEVCOMPILEROPTIONS_H_ +#ifndef _TDEVCOMPILEROPTIONS_H_ +#define _TDEVCOMPILEROPTIONS_H_  #include <tqobject.h> @@ -34,7 +34,7 @@ Used by build systems to give users a compiler options configuration dialog.  Common use case:  @code -static KDevCompilerOptions *createCompilerOptions( const TQString &name, TQObject *parent ) +static TDevCompilerOptions *createCompilerOptions( const TQString &name, TQObject *parent )  {      KService::Ptr service = KService::serviceByDesktopName( name );      if ( !service ) @@ -50,17 +50,17 @@ static KDevCompilerOptions *createCompilerOptions( const TQString &name, TQObjec          args = TQStringList::split(" ", prop.toString());      TQObject *obj = factory->create(parent, service->name().latin1(), -                                   "KDevCompilerOptions", args); +                                   "TDevCompilerOptions", args); -    if (!obj->inherits("KDevCompilerOptions")) +    if (!obj->inherits("TDevCompilerOptions"))          return 0; -    KDevCompilerOptions *dlg = (KDevCompilerOptions*) obj; +    TDevCompilerOptions *dlg = (TDevCompilerOptions*) obj;      return dlg;  }  ... -KDevCompilerOptions *plugin = createCompilerOptions(compilerName, parent); +TDevCompilerOptions *plugin = createCompilerOptions(compilerName, parent);  TQString flags = ""; //old compiler flags  if ( plugin )  { @@ -69,13 +69,13 @@ if ( plugin )  }  @endcode  */ -class KDevCompilerOptions : public TQObject +class TDevCompilerOptions : public TQObject  {      Q_OBJECT  public: -    KDevCompilerOptions( TQObject *parent=0, const char *name=0 ); +    TDevCompilerOptions( TQObject *parent=0, const char *name=0 );      /**       * Opens a dialog which allows the user to configure the diff --git a/lib/interfaces/extras/kdevvcsintegrator.cpp b/lib/interfaces/extras/tdevvcsintegrator.cpp index 5a6ab429..26bf915d 100644 --- a/lib/interfaces/extras/kdevvcsintegrator.cpp +++ b/lib/interfaces/extras/tdevvcsintegrator.cpp @@ -16,11 +16,11 @@     the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,     Boston, MA 02110-1301, USA.  */ -#include "kdevvcsintegrator.h" +#include "tdevvcsintegrator.h" -KDevVCSIntegrator::KDevVCSIntegrator(TQObject *parent, const char *name) +TDevVCSIntegrator::TDevVCSIntegrator(TQObject *parent, const char *name)      :TQObject(parent, name)  {  } -#include "kdevvcsintegrator.moc" +#include "tdevvcsintegrator.moc" diff --git a/lib/interfaces/extras/kdevvcsintegrator.h b/lib/interfaces/extras/tdevvcsintegrator.h index 793070b3..23ee6c22 100644 --- a/lib/interfaces/extras/kdevvcsintegrator.h +++ b/lib/interfaces/extras/tdevvcsintegrator.h @@ -16,13 +16,13 @@     the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,     Boston, MA 02110-1301, USA.  */ -#ifndef KDEVVCSINTEGRATOR_H -#define KDEVVCSINTEGRATOR_H +#ifndef TDEVVCSINTEGRATOR_H +#define TDEVVCSINTEGRATOR_H  #include <tqobject.h>  /** -@file kdevvcsintegrator.h +@file tdevvcsintegrator.h  The interface to VCS integrators.  */ @@ -62,11 +62,11 @@ The interface to VCS integrators.  VCS integrator takes care about setting up VCS for new and existing projects.  It can, for example, perform checkout or import operations.  */ -class KDevVCSIntegrator: public TQObject { +class TDevVCSIntegrator: public TQObject {      Q_OBJECT  public: -    KDevVCSIntegrator(TQObject *parent = 0, const char *name = 0); +    TDevVCSIntegrator(TQObject *parent = 0, const char *name = 0);      /**Reimplement to return a dialog to fetch the project from VCS.*/      virtual VCSDialog *fetcher(TQWidget *parent) = 0; | 
