diff options
author | Darrell Anderson <[email protected]> | 2014-03-02 20:05:33 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2014-03-02 20:05:33 +0100 |
commit | 722ce1efbac31c61b1d4b13f7e075c9f311e3e73 (patch) | |
tree | db1b6b28566e5fe9accb4a688f7257673cecb080 /languages/java/javasupportpart.cpp | |
parent | afb74575caf7dd8ccb6c235b1c8d788e320c19da (diff) | |
download | tdevelop-722ce1efbac31c61b1d4b13f7e075c9f311e3e73.tar.gz tdevelop-722ce1efbac31c61b1d4b13f7e075c9f311e3e73.zip |
Finish renaming tdevelop components
Diffstat (limited to 'languages/java/javasupportpart.cpp')
-rw-r--r-- | languages/java/javasupportpart.cpp | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/languages/java/javasupportpart.cpp b/languages/java/javasupportpart.cpp index 63b174fc..3c2090e8 100644 --- a/languages/java/javasupportpart.cpp +++ b/languages/java/javasupportpart.cpp @@ -17,10 +17,10 @@ #include "javasupport_events.h" #include "problemreporter.h" #include "backgroundparser.h" -#include "KDevJavaSupportIface.h" +#include "TDevJavaSupportIface.h" #include "javasupportfactory.h" #include "catalog.h" -#include "kdevdriver.h" +#include "tdevdriver.h" #include "javasupport_utils.h" #include "JavaStoreWalker.hpp" @@ -63,12 +63,12 @@ #include <tdetexteditor/texthintinterface.h> -#include <kdevcore.h> -#include <kdevproject.h> -#include <kdevmainwindow.h> -#include <kdevpartcontroller.h> -#include <kdevmakefrontend.h> -#include <kdevcoderepository.h> +#include <tdevcore.h> +#include <tdevproject.h> +#include <tdevmainwindow.h> +#include <tdevpartcontroller.h> +#include <tdevmakefrontend.h> +#include <tdevcoderepository.h> #include <domutil.h> #include <urlutil.h> @@ -77,11 +77,11 @@ enum { KDEV_DB_VERSION = 7 }; enum { KDEV_PCS_VERSION = 8 }; -class JavaDriver: public KDevDriver +class JavaDriver: public TDevDriver { public: JavaDriver( JavaSupportPart* javaSupport ) - : KDevDriver( javaSupport ) + : TDevDriver( javaSupport ) { } @@ -119,7 +119,7 @@ public: }; JavaSupportPart::JavaSupportPart(TQObject *parent, const char *name, const TQStringList &/*args*/) - : KDevLanguageSupport(JavaSupportFactory::info(), parent, name ? name : "KDevJavaSupport"), + : TDevLanguageSupport(JavaSupportFactory::info(), parent, name ? name : "TDevJavaSupport"), m_activeDocument( 0 ), m_activeView( 0 ), m_activeSelection( 0 ), m_activeEditor( 0 ), m_activeViewCursor( 0 ), m_projectClosed( true ), m_valid( false ) { @@ -127,7 +127,7 @@ JavaSupportPart::JavaSupportPart(TQObject *parent, const char *name, const TQStr m_driver = new JavaDriver( this ); - setXMLFile( "kdevjavasupport.rc" ); + setXMLFile( "tdevjavasupport.rc" ); m_catalogList.setAutoDelete( true ); setupCatalog(); @@ -167,7 +167,7 @@ JavaSupportPart::JavaSupportPart(TQObject *parent, const char *name, const TQStr connect( core( ), TQT_SIGNAL( projectConfigWidget( KDialogBase* ) ), this, TQT_SLOT( projectConfigWidget( KDialogBase* ) ) ); - new KDevJavaSupportIface( this ); + new TDevJavaSupportIface( this ); //(void) dcopClient(); } @@ -434,7 +434,7 @@ TQString JavaSupportPart::findSourceFile() return m_activeFileName; } -KDevLanguageSupport::Features JavaSupportPart::features() +TDevLanguageSupport::Features JavaSupportPart::features() { return Features( Classes | Functions | Variables ); } @@ -830,7 +830,7 @@ TQString JavaSupportPart::formatModelItem( const CodeModelItem *item, bool short return arg.stripWhiteSpace(); } else - return KDevLanguageSupport::formatModelItem( item, shortDescription ); + return TDevLanguageSupport::formatModelItem( item, shortDescription ); } void JavaSupportPart::addClass( ) |