summaryrefslogtreecommitdiffstats
path: root/vcs/cvsservice/cvspart.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'vcs/cvsservice/cvspart.cpp')
-rw-r--r--vcs/cvsservice/cvspart.cpp38
1 files changed, 19 insertions, 19 deletions
diff --git a/vcs/cvsservice/cvspart.cpp b/vcs/cvsservice/cvspart.cpp
index 2bda55f1..276a4d15 100644
--- a/vcs/cvsservice/cvspart.cpp
+++ b/vcs/cvsservice/cvspart.cpp
@@ -37,17 +37,17 @@
#include <cvsjob_stub.h>
#include <tdeparts/part.h>
-#include <kdevpartcontroller.h>
-#include <kdevgenericfactory.h>
-
-#include "kdevcore.h"
-#include "kdevmakefrontend.h"
-#include "kdevdifffrontend.h"
-#include "kdevappfrontend.h"
-#include "kdevplugininfo.h"
+#include <tdevpartcontroller.h>
+#include <tdevgenericfactory.h>
+
+#include "tdevcore.h"
+#include "tdevmakefrontend.h"
+#include "tdevdifffrontend.h"
+#include "tdevappfrontend.h"
+#include "tdevplugininfo.h"
#include "domutil.h"
-#include "kdevmainwindow.h"
-#include "kdevproject.h"
+#include "tdevmainwindow.h"
+#include "tdevproject.h"
#include "urlutil.h"
#include "cvsform.h"
@@ -72,16 +72,16 @@ bool g_projectWasJustCreated = false;
// Plugin factory
///////////////////////////////////////////////////////////////////////////////
-static const KDevPluginInfo data("kdevcvsservice");
-typedef KDevGenericFactory<CvsServicePart> CvsFactory;
-K_EXPORT_COMPONENT_FACTORY( libkdevcvsservice, CvsFactory( data ) )
+static const TDevPluginInfo data("tdevcvsservice");
+typedef TDevGenericFactory<CvsServicePart> CvsFactory;
+K_EXPORT_COMPONENT_FACTORY( libtdevcvsservice, CvsFactory( data ) )
///////////////////////////////////////////////////////////////////////////////
// class CvsServicePart
///////////////////////////////////////////////////////////////////////////////
CvsServicePart::CvsServicePart( TQObject *parent, const char *name, const TQStringList & )
- : KDevVersionControl( &data, parent,
+ : TDevVersionControl( &data, parent,
name ? name : "CvsService" ),
actionCommit( 0 ), actionDiff( 0 ), actionLog( 0 ), actionAnnotate(0), actionAdd( 0 ),
actionAddBinary( 0 ), actionRemove( 0 ), actionUpdate( 0 ),
@@ -126,10 +126,10 @@ void CvsServicePart::init()
this, TQT_SLOT(contextMenu(TQPopupMenu *, const Context *)) );
connect( core(), TQT_SIGNAL(projectConfigWidget(KDialogBase*)),
this, TQT_SLOT(projectConfigWidget(KDialogBase*)) );
- connect( core(), TQT_SIGNAL(stopButtonClicked(KDevPlugin*)),
- this, TQT_SLOT(slotStopButtonClicked(KDevPlugin*)) );
+ connect( core(), TQT_SIGNAL(stopButtonClicked(TDevPlugin*)),
+ this, TQT_SLOT(slotStopButtonClicked(TDevPlugin*)) );
- m_impl->m_widget->setIcon( UserIcon( "kdev_cvs", TDEIcon::DefaultState, CvsFactory::instance()) );
+ m_impl->m_widget->setIcon( UserIcon( "tdev_cvs", TDEIcon::DefaultState, CvsFactory::instance()) );
TQWhatsThis::add( m_impl->processWidget(), i18n("<b>CVS</b><p>Concurrent Versions System operations window. Shows output of Cervisia CVS Service.") );
m_impl->processWidget()->setCaption(i18n("CvsService Output"));
mainWindow()->embedOutputView( m_impl->processWidget(), i18n("CvsService"), i18n("cvs output") );
@@ -243,7 +243,7 @@ bool CvsServicePart::fetchFromRepository()
///////////////////////////////////////////////////////////////////////////////
-KDevVCSFileInfoProvider *CvsServicePart::fileInfoProvider() const
+TDevVCSFileInfoProvider *CvsServicePart::fileInfoProvider() const
{
return m_impl->fileInfoProvider();
}
@@ -704,7 +704,7 @@ void CvsServicePart::slotRemoveFromIgnoreList()
///////////////////////////////////////////////////////////////////////////////
-void CvsServicePart::slotStopButtonClicked( KDevPlugin* which )
+void CvsServicePart::slotStopButtonClicked( TDevPlugin* which )
{
if ( which != 0 && which != this )
return;