diff options
author | Kevin Smith <git@kismith.co.uk> | 2010-06-11 20:28:29 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2010-06-11 20:28:29 (GMT) |
commit | aa42a3adb3c5e36a77e24eb879ae6ecc8932b035 (patch) | |
tree | 466f19119225b428c1008de9bdbf507b8a27f7cb /Swift/QtUI | |
parent | 28584fcbc82974c51b8d9c3571238819085f266f (diff) | |
download | swift-contrib-aa42a3adb3c5e36a77e24eb879ae6ecc8932b035.zip swift-contrib-aa42a3adb3c5e36a77e24eb879ae6ecc8932b035.tar.bz2 |
Show the time of Notices in the tooltip.
Resolves: #396
Diffstat (limited to 'Swift/QtUI')
-rw-r--r-- | Swift/QtUI/EventViewer/QtEvent.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Swift/QtUI/EventViewer/QtEvent.cpp b/Swift/QtUI/EventViewer/QtEvent.cpp index 844a7f7..5305db2 100644 --- a/Swift/QtUI/EventViewer/QtEvent.cpp +++ b/Swift/QtUI/EventViewer/QtEvent.cpp @@ -6,6 +6,8 @@ #include "Swift/QtUI/EventViewer/QtEvent.h" +#include <QDateTime> + #include "Swiften/Events/MessageEvent.h" #include "Swiften/Events/ErrorEvent.h" #include "Swiften/Events/SubscriptionRequestEvent.h" @@ -20,7 +22,7 @@ QtEvent::QtEvent(boost::shared_ptr<StanzaEvent> event, bool active) : event_(eve QVariant QtEvent::data(int role) { switch (role) { - case Qt::ToolTipRole: + case Qt::ToolTipRole: return QVariant(text()).toString() + "\n" + B2QDATE(event_->getTime()).toString(); case Qt::DisplayRole: return QVariant(text()); case Qt::TextColorRole: return active_ ? Qt::black : Qt::darkGray; case Qt::BackgroundColorRole: return active_ ? Qt::white : Qt::lightGray; |