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 f277c07467 on xcb platform.

Task-number: QTBUG-43428
Change-Id: I18e354703d9fa9c196b2789e6df263debdb7ce06
Reviewed-by: Shawn Rutledge <shawn.rutledge@digia.com>
This commit is contained in:
Alexander Volkov 2015-04-24 15:53:01 +03:00 committed by Shawn Rutledge
parent 0823e3f746
commit 39683b2980

View File

@ -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);
}