From 8d081c4d3d184ef926e957db759e9a804139d0a5 Mon Sep 17 00:00:00 2001
From: Dennis Schridde <devurandom@gna.org>
Date: Wed, 21 May 2008 16:33:28 +0200
Subject: [PATCH] Argument error in desktop notification message.

---
 src/qtui/mainwin.cpp |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/qtui/mainwin.cpp b/src/qtui/mainwin.cpp
index 6bba02f..a5a2498 100644
--- a/src/qtui/mainwin.cpp
+++ b/src/qtui/mainwin.cpp
@@ -621,7 +621,7 @@ void MainWin::sendDesktopNotification(const QString &title, const QString &messa
 		notificationId, // ID of previous notification to replace
 		"", // Icon to display
 		title, // Summary / Header of the message to display
-		QString("%1: %2:\n%2").arg(QTime::currentTime().toString()).arg(title).arg(message), // Body of the message to display
+		QString("%1: %2:\n%3").arg(QTime::currentTime().toString()).arg(title).arg(message), // Body of the message to display
 		actions, // Actions from which the user may choose
 		hints, // Hints to the server displaying the message
 		uiSettings.value("NotificationDesktopTimeout", QVariant(5000)).toInt() // Timeout in milliseconds
-- 
1.5.5.1

