summaryrefslogtreecommitdiffstats
path: root/parts/appwizard/kdevlicense.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:56:07 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:56:07 +0000
commitd6f8bbb45b267065a6907e71ff9c98bb6d161241 (patch)
treed109539636691d7b03036ca1c0ed29dbae6577cf /parts/appwizard/kdevlicense.h
parent3331a47a9cad24795c7440ee8107143ce444ef34 (diff)
downloadtdevelop-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 'parts/appwizard/kdevlicense.h')
-rw-r--r--parts/appwizard/kdevlicense.h18
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