diff options
Diffstat (limited to 'vcs/subversion/subversion_fileinfo.h')
-rw-r--r-- | vcs/subversion/subversion_fileinfo.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/vcs/subversion/subversion_fileinfo.h b/vcs/subversion/subversion_fileinfo.h index 791d5e65..c78dfed6 100644 --- a/vcs/subversion/subversion_fileinfo.h +++ b/vcs/subversion/subversion_fileinfo.h @@ -21,7 +21,7 @@ #ifndef SVNFILEINFOPROVIDER_H #define SVNFILEINFOPROVIDER_H -#include <qmap.h> +#include <tqmap.h> #include <kdevversioncontrol.h> #include <kio/job.h> @@ -44,26 +44,26 @@ public: virtual ~SVNFileInfoProvider(); // -- Sync interface - virtual const VCSFileInfoMap *status( const QString &dirPath ); + virtual const VCSFileInfoMap *status( const TQString &dirPath ); // -- These two are used for subversionPart and subversionCore. Of couruse, others can use it. - const VCSFileInfoMap* statusExt( const QString &dirPath, bool checkRepos, bool fullRecurse, bool getAll, bool noIgnore ); - void slotStatusExt( const QString&, const QString& , int, int, int, int, long int ) ; + const VCSFileInfoMap* statusExt( const TQString &dirPath, bool checkRepos, bool fullRecurse, bool getAll, bool noIgnore ); + void slotStatusExt( const TQString&, const TQString& , int, int, int, int, long int ) ; // -- Async interface for requesting data - virtual bool requestStatus( const QString &dirPath, void *callerData, bool recursive = true, bool checkRepos = true ); + virtual bool requestStatus( const TQString &dirPath, void *callerData, bool recursive = true, bool checkRepos = true ); - QString projectDirectory() const; + TQString projectDirectory() const; k_dcop: - void slotStatus( const QString& , int, int, int, int, long int ) ; + void slotStatus( const TQString& , int, int, int, int, long int ) ; public slots: void slotResult( KIO::Job * ); private: mutable void *m_savedCallerData; - mutable QString m_previousDirPath; - mutable QString m_recursivePreviousDirPath; + mutable TQString m_previousDirPath; + mutable TQString m_recursivePreviousDirPath; mutable VCSFileInfoMap *m_cachedDirEntries; mutable VCSFileInfoMap *m_recursiveDirEntries; KIO::SimpleJob *job; |