diff options
author | Slávek Banko <[email protected]> | 2013-10-08 00:13:25 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2013-10-08 05:14:53 +0200 |
commit | 84f5a315c3429b47a7eff15e626e2efdbe4f6e5e (patch) | |
tree | 770861aa9033e1dc6c5168358194ff85b32dd429 /src/project.h | |
parent | 57d8bb3d12aed373eee08915f0ff19f5233aabe3 (diff) | |
download | kscope-84f5a315c3429b47a7eff15e626e2efdbe4f6e5e.tar.gz kscope-84f5a315c3429b47a7eff15e626e2efdbe4f6e5e.zip |
Initial TQt conversion
Diffstat (limited to 'src/project.h')
-rw-r--r-- | src/project.h | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/src/project.h b/src/project.h index a2679b2..5569490 100644 --- a/src/project.h +++ b/src/project.h @@ -41,29 +41,29 @@ public: struct Session { FileLocationList fllOpenFiles; - QString sLastFile; - QStringList slQueryFiles; - QStringList slCallTreeFiles; + TQString sLastFile; + TQStringList slQueryFiles; + TQStringList slCallTreeFiles; FileLocationList fllBookmarks; - QString sMakeCmd; - QString sMakeRoot; + TQString sMakeCmd; + TQString sMakeRoot; }; - virtual bool open(const QString&); + virtual bool open(const TQString&); virtual bool loadFileList(FileListTarget*); virtual bool storeFileList(FileListSource*); - virtual bool addFile(const QString&); + virtual bool addFile(const TQString&); virtual bool isEmpty(); virtual void close(); - virtual QString getFileTypes() const; + virtual TQString getFileTypes() const; virtual void getOptions(Options&) const; virtual void setOptions(const Options&); virtual void loadSession(Session&); virtual void storeSession(const Session&); - virtual void getSymHistory(QStringList&) const; - virtual void setSymHistory(QStringList&); - virtual void getMakeParams(QString&, QString&) const; + virtual void getSymHistory(TQStringList&) const; + virtual void setSymHistory(TQStringList&); + virtual void getMakeParams(TQString&, TQString&) const; /** * Determines whether a project is based on a Cscope.out file, and is @@ -72,7 +72,7 @@ public: */ virtual bool isTemporary() { return false; } - static bool create(const QString&, const QString&, const Options&); + static bool create(const TQString&, const TQString&, const Options&); private: /** The configuration file ("cscope.proj") */ @@ -80,11 +80,11 @@ private: /** The file that holds the paths of all source files in this project ("cscope.files") */ - QFile m_fiFileList; + TQFile m_fiFileList; - QString m_sMakeCmd; + TQString m_sMakeCmd; - QString m_sMakeRoot; + TQString m_sMakeRoot; static void writeOptions(KConfig*, const Options&); }; |