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 /languages/cpp/creategettersetterconfiguration.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 'languages/cpp/creategettersetterconfiguration.h')
-rw-r--r-- | languages/cpp/creategettersetterconfiguration.h | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/languages/cpp/creategettersetterconfiguration.h b/languages/cpp/creategettersetterconfiguration.h index e11a45ee..e89dd60b 100644 --- a/languages/cpp/creategettersetterconfiguration.h +++ b/languages/cpp/creategettersetterconfiguration.h @@ -12,9 +12,9 @@ #ifndef CREATEGETTERSETTERCONFIGURATION_H #define CREATEGETTERSETTERCONFIGURATION_H -#include <qobject.h> -#include <qstring.h> -#include <qstringlist.h> +#include <tqobject.h> +#include <tqstring.h> +#include <tqstringlist.h> class CppSupportPart; class QDomDocument; @@ -44,39 +44,39 @@ public slots: void store(); public: - void setPrefixGet(const QString& theValue) + void setPrefixGet(const TQString& theValue) { m_prefixGet = theValue; } - QString prefixGet() const + TQString prefixGet() const { return m_prefixGet; } - void setPrefixSet(const QString& theValue) + void setPrefixSet(const TQString& theValue) { m_prefixSet = theValue; } - QString prefixSet() const + TQString prefixSet() const { return m_prefixSet; } - void setPrefixVariable(const QStringList& theValue) + void setPrefixVariable(const TQStringList& theValue) { m_prefixVariable = theValue; } - QStringList prefixVariable() const + TQStringList prefixVariable() const { return m_prefixVariable; } - void setParameterName(const QString& theValue) + void setParameterName(const TQString& theValue) { m_parameterName = theValue; } - QString parameterName() const + TQString parameterName() const { return m_parameterName; } @@ -101,17 +101,17 @@ public: private: CppSupportPart* m_part; - QDomDocument* m_settings; + TQDomDocument* m_settings; - QString m_prefixGet; - QString m_prefixSet; - QStringList m_prefixVariable; - QString m_parameterName; + TQString m_prefixGet; + TQString m_prefixSet; + TQStringList m_prefixVariable; + TQString m_parameterName; bool m_isInlineGet; bool m_isInlineSet; private: - static QString defaultPath; + static TQString defaultPath; }; #endif |