summaryrefslogtreecommitdiff
path: root/testnotification/testnotification.cpp
diff options
context:
space:
mode:
authorJavier S. Pedro <maemo@javispedro.com>2012-08-14 00:11:51 +0200
committerJavier S. Pedro <maemo@javispedro.com>2012-08-14 00:11:51 +0200
commit758cec1a767c056aaf9da36fd411cdf4a8fba32e (patch)
tree341cb8705e2e6c02d713860c8403ac8a3630a78a /testnotification/testnotification.cpp
parent542d3489f45111aaca5514495af3847cf39e335b (diff)
downloadsowatch-758cec1a767c056aaf9da36fd411cdf4a8fba32e.tar.gz
sowatch-758cec1a767c056aaf9da36fd411cdf4a8fba32e.zip
rewrite live notifications handling using models
Diffstat (limited to 'testnotification/testnotification.cpp')
-rw-r--r--testnotification/testnotification.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/testnotification/testnotification.cpp b/testnotification/testnotification.cpp
index fa904b9..d541287 100644
--- a/testnotification/testnotification.cpp
+++ b/testnotification/testnotification.cpp
@@ -8,6 +8,9 @@ TestNotification::TestNotification(Type type, const QString &title, const QStrin
_time(QDateTime::currentDateTime()),
_title(title), _body(body)
{
+ const int high = 30000, low = 10000;
+ int rand = qrand() % ((high + 1) - low) + low;
+ QTimer::singleShot(rand, this, SIGNAL(dismissed()));
}
Notification::Type TestNotification::type() const
@@ -44,5 +47,3 @@ void TestNotification::dismiss()
{
deleteLater(); // We do not want to keep those around.
}
-
-