diff options
| author | 2025-10-11 00:17:16 +0200 | |
|---|---|---|
| committer | 2025-10-11 00:17:16 +0200 | |
| commit | b4e0ba463ec603d93022246536fb32ec2d651c82 (patch) | |
| tree | 2166bcbe4c86516746c2f0ce98f68091e911fbdb /src | |
| parent | KDE notifications: don't always set notifications as persistent. (#2719) (diff) | |
| download | KVIrc-b4e0ba463ec603d93022246536fb32ec2d651c82.tar.gz KVIrc-b4e0ba463ec603d93022246536fb32ec2d651c82.tar.bz2 KVIrc-b4e0ba463ec603d93022246536fb32ec2d651c82.zip | |
Fix DBUS notifier arguments (#2715)
* Fix DBUS notifier arguments
* Replace unsigned int cast with a suffix
Diffstat (limited to 'src')
| -rw-r--r-- | src/kvirc/kernel/KviApplication.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kvirc/kernel/KviApplication.cpp b/src/kvirc/kernel/KviApplication.cpp index 44ca6ea2f..4cc98f9de 100644 --- a/src/kvirc/kernel/KviApplication.cpp +++ b/src/kvirc/kernel/KviApplication.cpp @@ -852,7 +852,7 @@ void KviApplication::notifierMessage(KviWindow * pWnd, int iIconId, const QStrin // org.freedesktop.Notifications.Notify QVariantList args; args << QString("KVIrc"); // application name - args << QVariant(0); // notification id + args << QVariant(0u); // notification id args << szIcon; // application icon args << szTitle; // summary text args << szText; // detailed text |
