Commit 399f099ead3bba3600c62a6b8add122a21aa13c1

renamed showNote() to showSystemNote()
  
2626 priv->showBanner(text);
2727}
2828
29void QNotifications::showNote(const QString &text)
29void QNotifications::showSystemNote(const QString &text)
3030{
3131 MAEMO_PRIVATE(QNotifications);
32 priv->showNote(text);
32 priv->showSystemNote(text);
3333}
3434
3535} //namespace
  
2626
2727public Q_SLOTS:
2828 void showBanner(const QString &text);
29 void showNote(const QString &text);
29 void showSystemNote(const QString &text);
3030};
3131
3232} //namespace
  
2626 QNotificationsPrivate();
2727 ~QNotificationsPrivate();
2828 void showBanner(const QString &text);
29 void showNote(const QString &text);
29 void showSystemNote(const QString &text);
3030};
3131
3232/* begin private implementation */
4646 hildon_banner_show_information(0, "", text.toLatin1());
4747}
4848
49void QNotificationsPrivate::showNote(const QString &text)
49void QNotificationsPrivate::showSystemNote(const QString &text)
5050{
5151 QDBusMessage msg = QDBusMessage::createMethodCall("org.freedesktop.Notifications", "/org/freedesktop/Notifications",
5252 "org.freedesktop.Notifications", "SystemNoteDialog");