summaryrefslogtreecommitdiffstats
path: root/src/projectmanager.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/projectmanager.h')
-rw-r--r--src/projectmanager.h32
1 files changed, 16 insertions, 16 deletions
diff --git a/src/projectmanager.h b/src/projectmanager.h
index 1cfb07d6..15ac4644 100644
--- a/src/projectmanager.h
+++ b/src/projectmanager.h
@@ -2,9 +2,9 @@
#define __PROJECTMANAGER_H__
-#include <qstring.h>
-#include <qobject.h>
-#include <qdict.h>
+#include <tqstring.h>
+#include <tqobject.h>
+#include <tqdict.h>
#include <kxmlguiclient.h>
@@ -24,20 +24,20 @@ class ProjectInfo
{
public:
KURL m_projectURL;
- QDomDocument m_document;
- QString m_profileName;
- QString m_projectName;
- QString m_projectPlugin, m_language, m_activeLanguage, m_vcsPlugin;
- QStringList m_ignoreParts, m_keywords;
+ TQDomDocument m_document;
+ TQString m_profileName;
+ TQString m_projectName;
+ TQString m_projectPlugin, m_language, m_activeLanguage, m_vcsPlugin;
+ TQStringList m_ignoreParts, m_keywords;
- QString sessionFile() const;
+ TQString sessionFile() const;
};
/**
Project manager.
Loads and unloads projects.
*/
-class ProjectManager : public QObject, public KXMLGUIClient
+class ProjectManager : public TQObject, public KXMLGUIClient
{
Q_OBJECT
@@ -45,7 +45,7 @@ public:
~ProjectManager();
- static QString projectDirectory( const QString& path, bool absolute );
+ static TQString projectDirectory( const TQString& path, bool absolute );
static ProjectManager *getInstance();
@@ -56,7 +56,7 @@ public:
bool projectLoaded() const;
KURL projectFile() const;
- QString projectName() const;
+ TQString projectName() const;
void createActions( KActionCollection* ac );
@@ -87,10 +87,10 @@ private:
bool loadProjectPart();
void unloadProjectPart();
- bool loadLanguageSupport(const QString& lang);
+ bool loadLanguageSupport(const TQString& lang);
void unloadLanguageSupport();
-// QString profileByAttributes(const QString &language, const QStringList &keywords);
+// TQString profileByAttributes(const TQString &language, const TQStringList &keywords);
ProjectInfo *m_info;
@@ -102,9 +102,9 @@ private:
ProjectSession* m_pProjectSession;
KDevPlugin *m_vcsPlugin;
- QString m_vcsName;
+ TQString m_vcsName;
- QString m_oldProfileName;
+ TQString m_oldProfileName;
};