0004-Argument-error-in-desktop-notification-message.patch
| src/qtui/mainwin.cpp | ||
|---|---|---|
| 621 | 621 |
notificationId, // ID of previous notification to replace |
| 622 | 622 |
"", // Icon to display |
| 623 | 623 |
title, // Summary / Header of the message to display |
| 624 |
QString("%1: %2:\n%2").arg(QTime::currentTime().toString()).arg(title).arg(message), // Body of the message to display
|
|
| 624 |
QString("%1: %2:\n%3").arg(QTime::currentTime().toString()).arg(title).arg(message), // Body of the message to display
|
|
| 625 | 625 |
actions, // Actions from which the user may choose |
| 626 | 626 |
hints, // Hints to the server displaying the message |
| 627 | 627 |
uiSettings.value("NotificationDesktopTimeout", QVariant(5000)).toInt() // Timeout in milliseconds
|
| 628 |
- |
|