aboutsummaryrefslogtreecommitdiff
path: root/examples/GuiClient/profileDialog.h
diff options
context:
space:
mode:
authorManjeet Dahiya <manjeetdahiya@gmail.com>2010-09-12 14:46:21 +0000
committerManjeet Dahiya <manjeetdahiya@gmail.com>2010-09-12 14:46:21 +0000
commit72954fc541fb356571d213ca263eb8fa6a743004 (patch)
tree75f23ce9b9746eb022bff0d8dde69aba04151bc1 /examples/GuiClient/profileDialog.h
parentcd140721d0c65632367fa5892a4c2a952acb644e (diff)
downloadqxmpp-72954fc541fb356571d213ca263eb8fa6a743004.tar.gz
show time on profile dialog
Diffstat (limited to 'examples/GuiClient/profileDialog.h')
-rw-r--r--examples/GuiClient/profileDialog.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/examples/GuiClient/profileDialog.h b/examples/GuiClient/profileDialog.h
index 86b2bba5..79cd0577 100644
--- a/examples/GuiClient/profileDialog.h
+++ b/examples/GuiClient/profileDialog.h
@@ -10,6 +10,7 @@ namespace Ui {
class QXmppClient;
class QXmppVersionIq;
+class QXmppEntityTimeIq;
class profileDialog : public QDialog
{
@@ -27,6 +28,7 @@ public:
private slots:
void versionReceived(const QXmppVersionIq&);
+ void timeReceived(const QXmppEntityTimeIq&);
private:
void updateText();
@@ -36,6 +38,7 @@ private:
QString m_bareJid;
QXmppClient& m_xmppClient; // reference to the active QXmppClient (No ownership)
QMap<QString, QXmppVersionIq> m_versions;
+ QMap<QString, QXmppEntityTimeIq> m_time;
};
#endif // PROFILEDIALOG_H