Remove use of HTML in system tray icon tooltip

This commit is contained in:
Jonas Kvinge
2020-10-11 01:29:26 +02:00
parent 318c3bb422
commit a3e37fbfe2
4 changed files with 2 additions and 100 deletions

View File

@@ -52,7 +52,7 @@ class QtSystemTrayIcon : public SystemTrayIcon {
void ShowPopup(const QString &summary, const QString &message, int timeout) override;
void SetNowPlaying(const Song &song, const QUrl &cover_url) override;
void SetNowPlaying(const Song &song, const QUrl&) override;
void ClearNowPlaying() override;
bool MuteEnabled() const override { return action_mute_->isVisible(); }
@@ -88,11 +88,6 @@ class QtSystemTrayIcon : public SystemTrayIcon {
QAction *action_mute_;
QAction *action_love_;
#ifndef Q_OS_WIN
QString de_;
QString pattern_;
#endif
};
#endif // QTSYSTEMTRAYICON_H