summaryrefslogtreecommitdiffstats
path: root/Swift
diff options
context:
space:
mode:
authorKevin Smith <git@kismith.co.uk>2010-06-11 20:28:29 (GMT)
committerKevin Smith <git@kismith.co.uk>2010-06-11 20:28:29 (GMT)
commitaa42a3adb3c5e36a77e24eb879ae6ecc8932b035 (patch)
tree466f19119225b428c1008de9bdbf507b8a27f7cb /Swift
parent28584fcbc82974c51b8d9c3571238819085f266f (diff)
downloadswift-aa42a3adb3c5e36a77e24eb879ae6ecc8932b035.zip
swift-aa42a3adb3c5e36a77e24eb879ae6ecc8932b035.tar.bz2
Show the time of Notices in the tooltip.
Resolves: #396
Diffstat (limited to 'Swift')
-rw-r--r--Swift/QtUI/EventViewer/QtEvent.cpp4
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;