summaryrefslogtreecommitdiffstats
path: root/buildtools/autotools/makefilehandler.h
diff options
context:
space:
mode:
Diffstat (limited to 'buildtools/autotools/makefilehandler.h')
-rw-r--r--buildtools/autotools/makefilehandler.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/buildtools/autotools/makefilehandler.h b/buildtools/autotools/makefilehandler.h
index 77045fe9..a104774c 100644
--- a/buildtools/autotools/makefilehandler.h
+++ b/buildtools/autotools/makefilehandler.h
@@ -40,20 +40,20 @@ public:
* \param folder, the folder to parse
* \param recursive if true, subfolders will be parsed - defaults to true
*/
- void parse( const QString& folder, bool recursive = true );
+ void parse( const TQString& folder, bool recursive = true );
/**
* Get the AST for a certain path
* \param folderPath the path of the folder to get an AST for
* \return the AST that represents a particular folder
*/
- AutoTools::ProjectAST* astForFolder( const QString& folderPath );
+ AutoTools::ProjectAST* astForFolder( const TQString& folderPath );
/**
* Check if a string is an automake variable
* \return true if it is an automake variable, false otherwise
*/
- bool isVariable( const QString& item ) const;
+ bool isVariable( const TQString& item ) const;
/**
* Find the value for the variable specified by \p variable
@@ -61,7 +61,7 @@ public:
* \param ast the AST to use to look for the variable in
* \return the value to substitute for the variable
*/
- QString resolveVariable( const QString& variable,
+ TQString resolveVariable( const TQString& variable,
AutoTools::ProjectAST* ast );