diff options
Diffstat (limited to 'languages/cpp/setuphelper.h')
-rw-r--r-- | languages/cpp/setuphelper.h | 8 |
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 |