summaryrefslogtreecommitdiffstats
path: root/languages/cpp/setuphelper.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:56:07 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:56:07 +0000
commitd6f8bbb45b267065a6907e71ff9c98bb6d161241 (patch)
treed109539636691d7b03036ca1c0ed29dbae6577cf /languages/cpp/setuphelper.h
parent3331a47a9cad24795c7440ee8107143ce444ef34 (diff)
downloadtdevelop-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 'languages/cpp/setuphelper.h')
-rw-r--r--languages/cpp/setuphelper.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/languages/cpp/setuphelper.h b/languages/cpp/setuphelper.h
index 380994b4..aa95296a 100644
--- a/languages/cpp/setuphelper.h
+++ b/languages/cpp/setuphelper.h
@@ -13,7 +13,7 @@
#ifndef SETUPHELPER_H
#define SETUPHELPER_H
-#include <qstringlist.h>
+#include <tqstringlist.h>
/**
A helper methods for setting up the various Driver derivates.
@@ -24,19 +24,19 @@ namespace SetupHelper {
/** Get the include paths returned by gcc.
* @param ok false if there was a problem running gcc
*/
- QString getGccIncludePath(bool *ok);
+ TQString getGccIncludePath(bool *ok);
/** Get the include-path return by gcc -v
* this path includes the path from the environment,
* the c++-include-path, etc., and of couse it also includes the above path.
* @param ok false if there was a problem running gcc
* */
- QString getVerboseGccIncludePath(bool* ok);
+ TQString getVerboseGccIncludePath(bool* ok);
/** Get the predefined macros returned by gcc
* @param ok false if there was a problem running gcc
*/
- QStringList getGccMacros(bool *ok);
+ TQStringList getGccMacros(bool *ok);
};
#endif