summaryrefslogtreecommitdiffstats
path: root/vcs/cvsservice/cvspart.h
diff options
context:
space:
mode:
Diffstat (limited to 'vcs/cvsservice/cvspart.h')
-rw-r--r--vcs/cvsservice/cvspart.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/vcs/cvsservice/cvspart.h b/vcs/cvsservice/cvspart.h
index e3513a98..da15dff2 100644
--- a/vcs/cvsservice/cvspart.h
+++ b/vcs/cvsservice/cvspart.h
@@ -14,8 +14,8 @@
#ifndef _CVSPART_H_
#define _CVSPART_H_
-#include <qguardedptr.h>
-#include <qcstring.h>
+#include <tqguardedptr.h>
+#include <tqcstring.h>
#include <kurl.h>
#include "kdevversioncontrol.h"
@@ -43,7 +43,7 @@ class CvsServicePart : public KDevVersionControl
public:
//! Standard constructor.
- CvsServicePart( QObject *parent, const char *name, const QStringList & );
+ CvsServicePart( TQObject *parent, const char *name, const TQStringList & );
//! Destructor.
virtual ~CvsServicePart();
@@ -51,11 +51,11 @@ public:
* Returns the configuration widget (for properly configuring the project to
* use CVS), child of @p parent.
*/
- virtual QWidget *newProjectWidget( QWidget *parent );
+ virtual TQWidget *newProjectWidget( TQWidget *parent );
/**
* Setup a directory tree for use with CVS.
*/
- virtual void createNewProject( const QString& dir );
+ virtual void createNewProject( const TQString& dir );
/**
* Fetch a module from remote repository, so it can be used for importing
*/
@@ -68,7 +68,7 @@ public:
* @param dirPath absolute path of the directory
* @return true if the the directory is a valid CVS sandbox
*/
- virtual bool isValidDirectory( const QString &dirPath ) const;
+ virtual bool isValidDirectory( const TQString &dirPath ) const;
private slots:
/** Add menu items binded to cvs operations' slots to @p popup, using
@@ -76,7 +76,7 @@ private slots:
* Not that @p context _must_ be FileContext-type, otherwise will do
* nothing.
*/
- void contextMenu( QPopupMenu *popup, const Context *context );
+ void contextMenu( TQPopupMenu *popup, const Context *context );
// Cvs operations (menubar)
void slotActionLogin();
@@ -120,8 +120,8 @@ private slots:
void slotProjectOpened();
void slotProjectClosed();
- void slotAddFilesToProject(const QStringList &);
- void slotRemovedFilesFromProject(const QStringList &);
+ void slotAddFilesToProject(const TQStringList &);
+ void slotRemovedFilesFromProject(const TQStringList &);
/** Adds a configuration widget (for properly configuring CVS command-line options)
* and adds it to @p dlg.
@@ -145,7 +145,7 @@ private:
/** This is a pointer to the d->form used for collecting data about CVS project creation (used
* by the ApplicationWizard in example)
*/
- QGuardedPtr<CvsForm> m_cvsConfigurationForm;
+ TQGuardedPtr<CvsForm> m_cvsConfigurationForm;
// Actions
KAction *actionCommit,