diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:56:07 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:56:07 +0000 |
commit | d6f8bbb45b267065a6907e71ff9c98bb6d161241 (patch) | |
tree | d109539636691d7b03036ca1c0ed29dbae6577cf /vcs/cvsservice/cvspart.h | |
parent | 3331a47a9cad24795c7440ee8107143ce444ef34 (diff) | |
download | tdevelop-d6f8bbb45b267065a6907e71ff9c98bb6d161241.tar.gz tdevelop-d6f8bbb45b267065a6907e71ff9c98bb6d161241.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdevelop@1157658 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'vcs/cvsservice/cvspart.h')
-rw-r--r-- | vcs/cvsservice/cvspart.h | 20 |
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, |