diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2014-05-25 15:37:31 +0900 | 
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2014-05-25 15:37:31 +0900 | 
| commit | 6392f5a9dfce2bf83617d49bb7f332181ec6004e (patch) | |
| tree | ab69e390f7962b7e7dda1a3a64f035c61c751cf4 /vcs/subversion/subversion_part.cpp | |
| parent | aba2788b428dc53243407902e9ccbb20b97a69fd (diff) | |
| download | tdevelop-6392f5a9dfce2bf83617d49bb7f332181ec6004e.tar.gz tdevelop-6392f5a9dfce2bf83617d49bb7f332181ec6004e.zip | |
Revert "Finish renaming tdevelop components"
This reverts commit 722ce1efbac31c61b1d4b13f7e075c9f311e3e73.
Diffstat (limited to 'vcs/subversion/subversion_part.cpp')
| -rw-r--r-- | vcs/subversion/subversion_part.cpp | 26 | 
1 files changed, 13 insertions, 13 deletions
| diff --git a/vcs/subversion/subversion_part.cpp b/vcs/subversion/subversion_part.cpp index 3df326d9..f3f43cd9 100644 --- a/vcs/subversion/subversion_part.cpp +++ b/vcs/subversion/subversion_part.cpp @@ -21,18 +21,18 @@  #include <tqwhatsthis.h>  #include <kiconloader.h>  #include <tdelocale.h> -#include <tdevgenericfactory.h> +#include <kdevgenericfactory.h>  #include <tdeaction.h>  #include <tdepopupmenu.h> -#include "tdevcore.h" -#include "tdevmainwindow.h" +#include "kdevcore.h" +#include "kdevmainwindow.h"  #include "subversion_core.h"  #include "subversion_widget.h"  #include "subversionprojectwidget.h"  #include "subversion_fileinfo.h"  #include "subversion_global.h" -#include "tdevversioncontrol.h" +#include "kdevversioncontrol.h"  #include "svn_fileselectdlg_commit.h"  #include "svn_logviewwidget.h"  #include "svn_switchwidget.h" @@ -43,28 +43,28 @@  #include <tqvbox.h>  #include <kdialogbase.h>  #include <tdeparts/part.h> -#include <tdevpartcontroller.h> -#include <tdevproject.h> +#include <kdevpartcontroller.h> +#include <kdevproject.h>  #include <domutil.h>  #include <kurlrequester.h>  #include <tqradiobutton.h>  #include <kdebug.h>  #include <tqwidget.h> -#include <tdevplugininfo.h> +#include <kdevplugininfo.h>  #include <tdemessagebox.h>  using namespace SvnGlobal; -static const TDevPluginInfo data("tdevsubversion"); +static const KDevPluginInfo data("kdevsubversion"); -typedef TDevGenericFactory<subversionPart> subversionFactory; -K_EXPORT_COMPONENT_FACTORY( libtdevsubversion, subversionFactory( data ) ) +typedef KDevGenericFactory<subversionPart> subversionFactory; +K_EXPORT_COMPONENT_FACTORY( libkdevsubversion, subversionFactory( data ) )  //bool g_projectWasJustCreated = false;  subversionPart::subversionPart(TQObject *parent, const char *name, const TQStringList& ) -	: TDevVersionControl(&data, parent, name ? name : "Subversion" ) { +	: KDevVersionControl(&data, parent, name ? name : "Subversion" ) {  	setInstance(subversionFactory::instance());  	m_projWidget = 0; @@ -79,7 +79,7 @@ subversionPart::subversionPart(TQObject *parent, const char *name, const TQStrin  	// Context menu  	connect( core(), TQT_SIGNAL(contextMenu(TQPopupMenu *, const Context *)), this, TQT_SLOT(contextMenu(TQPopupMenu *, const Context *)) );  	connect( core(), TQT_SIGNAL(projectConfigWidget(KDialogBase*)), this, TQT_SLOT(projectConfigWidget(KDialogBase*)) ); -	connect( core(), TQT_SIGNAL(stopButtonClicked(TDevPlugin*)), this, TQT_SLOT(slotStopButtonClicked(TDevPlugin*)) ); +	connect( core(), TQT_SIGNAL(stopButtonClicked(KDevPlugin*)), this, TQT_SLOT(slotStopButtonClicked(KDevPlugin*)) );  	connect( core(), TQT_SIGNAL(projectOpened()), this, TQT_SLOT(slotProjectOpened()) );  	connect( core(), TQT_SIGNAL(projectClosed()), this, TQT_SLOT(slotProjectClosed()) ); @@ -177,7 +177,7 @@ bool subversionPart::fetchFromRepository() {          return true;  } -TDevVCSFileInfoProvider * subversionPart::fileInfoProvider() const { +KDevVCSFileInfoProvider * subversionPart::fileInfoProvider() const {  	return m_impl->fileInfoProvider();  } | 
