diff options
Diffstat (limited to 'buildtools/autotools/misc.h')
-rw-r--r-- | buildtools/autotools/misc.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/buildtools/autotools/misc.h b/buildtools/autotools/misc.h index 9db9919e..2f8a092d 100644 --- a/buildtools/autotools/misc.h +++ b/buildtools/autotools/misc.h @@ -12,9 +12,9 @@ #ifndef _MISC_H_ #define _MISC_H_ -#include <qcstring.h> -#include <qmap.h> -#include <qwidget.h> +#include <tqcstring.h> +#include <tqmap.h> +#include <tqwidget.h> /** * Very small helper class. It has just static methods. @@ -27,36 +27,36 @@ public: * Loads the compiler options plugin for the given compiler, executes the dialog * with some initial flags, and returns the new flags. */ - static QString execFlagsDialog( const QString &compiler, const QString &flags, QWidget *parent ); + static TQString execFlagsDialog( const TQString &compiler, const TQString &flags, TQWidget *parent ); /** * Returns the canonicalized version of a file name, i.e. * the file name with special characters replaced by underscores */ - static QString canonicalize( const QString &str ); + static TQString canonicalize( const TQString &str ); /** * Parses a Makefile.am and stores its variable assignments * in a map. */ - static void parseMakefileam( const QString &filename, QMap<QString, QString> *variables ); + static void parseMakefileam( const TQString &filename, TQMap<TQString, TQString> *variables ); - static void addToMakefileam( const QString &filename, QMap<QString, QString> variables ); - static void removeFromMakefileam( const QString &filename, QMap<QString, QString> variables ); - static void setMakefileam ( const QString &fileName, QMap<QString, QString> variables ); + static void addToMakefileam( const TQString &filename, TQMap<TQString, TQString> variables ); + static void removeFromMakefileam( const TQString &filename, TQMap<TQString, TQString> variables ); + static void setMakefileam ( const TQString &fileName, TQMap<TQString, TQString> variables ); - static void addRemoveMakefileam(const QString &fileName, QMap<QString, QString> variables, bool add); + static void addRemoveMakefileam(const TQString &fileName, TQMap<TQString, TQString> variables, bool add); /** * Parses configure.in and splits AC_OUTPUT into a QStringList */ - static QStringList configureinLoadMakefiles( QString configureinpath ); + static TQStringList configureinLoadMakefiles( TQString configureinpath ); /** - * Receives a QStringList and puts it into + * Receives a TQStringList and puts it into * configure.in as arguments to AC_OUTPUT */ - static void configureinSaveMakefiles( QString configureinpath, QStringList makefiles ); + static void configureinSaveMakefiles( TQString configureinpath, TQStringList makefiles ); }; |