summaryrefslogtreecommitdiff
path: root/testnotification/testnotification.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'testnotification/testnotification.cpp')
-rw-r--r--testnotification/testnotification.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/testnotification/testnotification.cpp b/testnotification/testnotification.cpp
index d5fe985..fe1b30f 100644
--- a/testnotification/testnotification.cpp
+++ b/testnotification/testnotification.cpp
@@ -8,7 +8,7 @@ TestNotification::TestNotification(Type type, const QString &title, const QStrin
_time(QDateTime::currentDateTime()),
_title(title), _body(body)
{
- const int high = 10000, low = 5000;
+ const int high = 60 * 1000, low = 30 * 1000;
int rand = qrand() % ((high + 1) - low) + low;
QTimer::singleShot(rand, this, SIGNAL(dismissed()));
}