Commit 39683b29 authored by Alexander Volkov's avatar Alexander Volkov Committed by Shawn Rutledge
Browse files

QSystemTrayIcon: Fix the placement of title and message in a balloon

Swap title and message parameters in the QBalloonTip::showBalloon() call.
It was wrong in f277c074

 on xcb platform.

Task-number: QTBUG-43428
Change-Id: I18e354703d9fa9c196b2789e6df263debdb7ce06
Reviewed-by: default avatarShawn Rutledge <shawn.rutledge@digia.com>
Showing with 1 addition and 1 deletion
......@@ -372,7 +372,7 @@ void QSystemTrayIconPrivate::showMessage_sys(const QString &title, const QString
}
if (!sys)
return;
QBalloonTip::showBalloon(icon, message, title, sys->systemTrayIcon(),
QBalloonTip::showBalloon(icon, title, message, sys->systemTrayIcon(),
sys->globalGeometry().center(),
msecs);
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment