diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:56:07 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:56:07 +0000 |
commit | d6f8bbb45b267065a6907e71ff9c98bb6d161241 (patch) | |
tree | d109539636691d7b03036ca1c0ed29dbae6577cf /buildtools/autotools/makefilehandler.h | |
parent | 3331a47a9cad24795c7440ee8107143ce444ef34 (diff) | |
download | tdevelop-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 'buildtools/autotools/makefilehandler.h')
-rw-r--r-- | buildtools/autotools/makefilehandler.h | 8 |
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 ); |