We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fdc1302 commit 3617485Copy full SHA for 3617485
src/services/status_notifier/item.cpp
@@ -248,7 +248,7 @@ void StatusNotifierItem::onGetAllFinished() {
248
emit this->ready();
249
}
250
251
-void StatusNotifierItem::onGetAllFailed() {
+void StatusNotifierItem::onGetAllFailed() const {
252
// Not changing the item to ready, as it is almost definitely broken.
253
if (!this->mReady) {
254
qWarning(logStatusNotifierItem) << "Failed to load tray item" << this->properties.toString();
src/services/status_notifier/item.hpp
@@ -75,7 +75,7 @@ class StatusNotifierItem: public QObject {
75
private slots:
76
void updateIcon();
77
void onGetAllFinished();
78
- void onGetAllFailed();
+ void onGetAllFailed() const;
79
void onMenuPathChanged();
80
81
private:
0 commit comments