diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:42:31 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:42:31 +0000 |
commit | 576eb4299a00bc053db35414406f46372a0f70f2 (patch) | |
tree | 4c030922d533821db464af566188e7d40cc8848c /libkdegames/kchatdialog.h | |
parent | 0718336b6017d1a4fc1d626544180a5a2a29ddec (diff) | |
download | tdegames-576eb4299a00bc053db35414406f46372a0f70f2.tar.gz tdegames-576eb4299a00bc053db35414406f46372a0f70f2.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegames@1157643 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'libkdegames/kchatdialog.h')
-rw-r--r-- | libkdegames/kchatdialog.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/libkdegames/kchatdialog.h b/libkdegames/kchatdialog.h index 96b3eef2..853dd94a 100644 --- a/libkdegames/kchatdialog.h +++ b/libkdegames/kchatdialog.h @@ -34,14 +34,14 @@ public: /** * Construct a KChatDialog widget **/ - KChatDialog(QWidget* parent, bool modal = false); + KChatDialog(TQWidget* parent, bool modal = false); /** * Construct a KChatDialog widget which automatically configures the * @ref KChatBase widget. You probably want to use this as you don't * have to care about the configuration stuff yourself. **/ - KChatDialog(KChatBase* chatWidget, QWidget* parent, bool modal = false); + KChatDialog(KChatBase* chatWidget, TQWidget* parent, bool modal = false); /** * Destruct the dialog @@ -52,23 +52,23 @@ public: * @return The font that shall be used as the "name: " part of a normal * message. **/ - QFont nameFont() const; + TQFont nameFont() const; /** * @return The font that shall be used for normal messages. **/ - QFont textFont() const; + TQFont textFont() const; /** * @return The font that shall be used as the "name: " part of a system * (game) message. **/ - QFont systemNameFont() const; + TQFont systemNameFont() const; /** * @return The font that shall be used for a system (game) message. **/ - QFont systemTextFont() const; + TQFont systemTextFont() const; /** * Set the widget that will be configured by the dialog. Use this if you @@ -103,10 +103,10 @@ protected slots: virtual void slotOk(); private: - void setNameFont(QFont); - void setTextFont(QFont); - void setSystemNameFont(QFont); - void setSystemTextFont(QFont); + void setNameFont(TQFont); + void setTextFont(TQFont); + void setSystemNameFont(TQFont); + void setSystemTextFont(TQFont); void setMaxMessages(int max); private: |