diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2013-07-28 02:56:18 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2013-07-28 03:17:51 +0200 |
commit | cf4f444abb13028e2378e300f8c6d3a44f699f5d (patch) | |
tree | 1bd57816a1e63b405b64ec901687f7f126b9b5d2 /kshutdown/mtip.h | |
parent | 75346893bd6bbd2760dc36e95226515f42ed3f59 (diff) | |
download | kshutdown-cf4f444abb13028e2378e300f8c6d3a44f699f5d.tar.gz kshutdown-cf4f444abb13028e2378e300f8c6d3a44f699f5d.zip |
Initial TQt conversion
Diffstat (limited to 'kshutdown/mtip.h')
-rw-r--r-- | kshutdown/mtip.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kshutdown/mtip.h b/kshutdown/mtip.h index 4de2fb3..e688048 100644 --- a/kshutdown/mtip.h +++ b/kshutdown/mtip.h @@ -40,7 +40,7 @@ public: * @param tipType A tip type * @param parent A parent widget */ - MTip(const TipType tipType, QWidget *parent); + MTip(const TipType tipType, TQWidget *parent); /** * Destructor. @@ -50,16 +50,16 @@ public: /** * Sets tip text to @p value. */ - void setTipText(const QString &value); + void setTipText(const TQString &value); /** * Sets tip type to @p value. */ void setTipType(const TipType value); private: - QString _iconPath; + TQString _iconPath; TipType _type; - QString getIconPath(const QString &name) const; + TQString getIconPath(const TQString &name) const; }; #endif // __MTIP_H__ |