diff options
Diffstat (limited to 'parts/appwizard/kdevlicense.h')
-rw-r--r-- | parts/appwizard/kdevlicense.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/parts/appwizard/kdevlicense.h b/parts/appwizard/kdevlicense.h index 0f8a41ce..2e81c9ec 100644 --- a/parts/appwizard/kdevlicense.h +++ b/parts/appwizard/kdevlicense.h @@ -24,7 +24,7 @@ The interface to installed licenses. */ -#include <qstringlist.h> +#include <tqstringlist.h> #include "kdevfile.h" @@ -35,41 +35,41 @@ public: /**Constructs a KDevLicense and loads the given license template file. @param name The name of this license. @param fileName The file name where license template text is kept.*/ - KDevLicense(const QString& name, const QString& fileName); + KDevLicense(const TQString& name, const TQString& fileName); public: /**Assembles the license to a string suitable for replacement of a %{LICENSE} .*/ - QString assemble(KDevFile::CommentingStyle commentingStyle, const QString& author, const QString& email, int leadingSpaces ); + TQString assemble(KDevFile::CommentingStyle commentingStyle, const TQString& author, const TQString& email, int leadingSpaces ); /** * returns the name of this license. */ - QString name() const { return m_name; } + TQString name() const { return m_name; } /** * returns list of files tat must be present in the project's root directory * if any source files uses this license. */ - QStringList copyFiles(){ return m_copyFiles; } + TQStringList copyFiles(){ return m_copyFiles; } private: - void readFile( const QString& fileName ); + void readFile( const TQString& fileName ); private: /** * Name of this license */ - QString m_name; + TQString m_name; /** * Raw lines of the license. Should contain no spaces at * the start or end of each line. */ - QStringList m_rawLines; + TQStringList m_rawLines; /** * List of files that must be added to the project, if any * file in the project uses this license. */ - QStringList m_copyFiles; + TQStringList m_copyFiles; }; #endif |