summaryrefslogtreecommitdiffstats
path: root/Swift
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2011-02-04 16:01:22 (GMT)
committerRemko Tronçon <git@el-tramo.be>2011-02-04 16:01:22 (GMT)
commit76cffe6bf98c95af728d01e015d2ee767e1eabc6 (patch)
tree128070092ef218368c4ac3be8d0500f5185d0bf0 /Swift
parent6a931dc727a5581966425f9ec5d2ce5ddbbfe11a (diff)
downloadswift-76cffe6bf98c95af728d01e015d2ee767e1eabc6.zip
swift-76cffe6bf98c95af728d01e015d2ee767e1eabc6.tar.bz2
Make FreeDesktop notification async.
Diffstat (limited to 'Swift')
-rw-r--r--Swift/QtUI/FreeDesktopNotifier.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Swift/QtUI/FreeDesktopNotifier.cpp b/Swift/QtUI/FreeDesktopNotifier.cpp
index 6db1da1..1edf19c 100644
--- a/Swift/QtUI/FreeDesktopNotifier.cpp
+++ b/Swift/QtUI/FreeDesktopNotifier.cpp
@@ -52,7 +52,7 @@ void FreeDesktopNotifier::showMessage(Type type, const String& subject, const St
msg << hints; // Hints to the server displaying the message
msg << qint32(timeout*1000); // Timeout in milliseconds
- bus.call(msg);
+ bus.asyncCall(msg);
}
}