diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
commit | ffe8a83e053396df448e9413828527613ca3bd46 (patch) | |
tree | a73d4169e02df4a50f9a12cb165fcd0ab5bac7c6 /kdeui/kfontcombo.h | |
parent | 682bf3bfdcbcbb1fca85e8a36ed03e062e0555d5 (diff) | |
download | tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.tar.gz tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1157647 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdeui/kfontcombo.h')
-rw-r--r-- | kdeui/kfontcombo.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kdeui/kfontcombo.h b/kdeui/kfontcombo.h index f3c5d1169..8a2a5f07c 100644 --- a/kdeui/kfontcombo.h +++ b/kdeui/kfontcombo.h @@ -35,7 +35,7 @@ class KDEUI_EXPORT KFontCombo : public KComboBox { Q_OBJECT - Q_PROPERTY(QString family READ currentFont WRITE setCurrentFont) + Q_PROPERTY(TQString family READ currentFont WRITE setCurrentFont) Q_PROPERTY(bool bold READ bold WRITE setBold DESIGNABLE true) Q_PROPERTY(bool italic READ italic WRITE setItalic DESIGNABLE true) Q_PROPERTY(bool underline READ underline WRITE setUnderline DESIGNABLE true) @@ -48,7 +48,7 @@ public: * @param parent The parent widget * @param name The object name for the widget */ - KFontCombo(QWidget *parent, const char *name = 0); + KFontCombo(TQWidget *parent, const char *name = 0); /** * Constructor that takes an already initialzed font list * @@ -56,7 +56,7 @@ public: * @param parent The parent widget * @param name The object name for the widget */ - KFontCombo(const QStringList &fonts, QWidget *parent, const char *name = 0); + KFontCombo(const TQStringList &fonts, TQWidget *parent, const char *name = 0); /** * Destructor */ @@ -67,17 +67,17 @@ public: * * @param fonts Font list to show */ - void setFonts(const QStringList &fonts); + void setFonts(const TQStringList &fonts); /** * Sets the currently selected font. * * @param family Font to select. */ - void setCurrentFont(const QString &family); + void setCurrentFont(const TQString &family); /** * @return the currently selected font. */ - QString currentFont() const; + TQString currentFont() const; /** * Sets the listed fonts to bold or normal. |