|
|
@ -72,16 +72,16 @@ bool g_projectWasJustCreated = false;
|
|
|
|
// Plugin factory
|
|
|
|
// Plugin factory
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
|
|
static const KDevPluginInfo data("kdevcvsservice");
|
|
|
|
static const KDevPluginInfo pluginData("kdevcvsservice");
|
|
|
|
typedef KDevGenericFactory<CvsServicePart> CvsFactory;
|
|
|
|
typedef KDevGenericFactory<CvsServicePart> CvsFactory;
|
|
|
|
K_EXPORT_COMPONENT_FACTORY( libkdevcvsservice, CvsFactory( data ) )
|
|
|
|
K_EXPORT_COMPONENT_FACTORY( libkdevcvsservice, CvsFactory( pluginData ) )
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// class CvsServicePart
|
|
|
|
// class CvsServicePart
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
|
|
CvsServicePart::CvsServicePart( TQObject *parent, const char *name, const TQStringList & )
|
|
|
|
CvsServicePart::CvsServicePart( TQObject *parent, const char *name, const TQStringList & )
|
|
|
|
: KDevVersionControl( &data, parent,
|
|
|
|
: KDevVersionControl( &pluginData, parent,
|
|
|
|
name ? name : "CvsService" ),
|
|
|
|
name ? name : "CvsService" ),
|
|
|
|
actionCommit( 0 ), actionDiff( 0 ), actionLog( 0 ), actionAnnotate(0), actionAdd( 0 ),
|
|
|
|
actionCommit( 0 ), actionDiff( 0 ), actionLog( 0 ), actionAnnotate(0), actionAdd( 0 ),
|
|
|
|
actionAddBinary( 0 ), actionRemove( 0 ), actionUpdate( 0 ),
|
|
|
|
actionAddBinary( 0 ), actionRemove( 0 ), actionUpdate( 0 ),
|
|
|
|