diff options
| author | Tomasz Sterna <tomek@xiaoka.com> | 2015-01-07 00:37:15 +0100 |
|---|---|---|
| committer | Tomasz Sterna <tomek@xiaoka.com> | 2015-01-07 00:37:15 +0100 |
| commit | 16ddb4d6ca5742aa36112f187e36a039a7357460 (patch) | |
| tree | fc8b0acdf1883f5d34863a8c063b2d642d1fe100 /daemon/manager.cpp | |
| parent | a55f8f218ea9b52e97b9b7de1ac43502ce8c9994 (diff) | |
Refactored whole app handling into AppInfo class
Diffstat (limited to 'daemon/manager.cpp')
| -rw-r--r-- | daemon/manager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/daemon/manager.cpp b/daemon/manager.cpp index 557fa07..7a3239f 100644 --- a/daemon/manager.cpp +++ b/daemon/manager.cpp @@ -382,8 +382,8 @@ QVariantList PebbledProxy::AllApps() const m.insert("version-label", QVariant::fromValue(info.versionLabel())); m.insert("is-watchface", QVariant::fromValue(info.isWatchface())); - if (!info.menuIcon().isNull()) { - m.insert("menu-icon", QVariant::fromValue(info.menuIconAsPng())); + if (!info.getMenuIconImage().isNull()) { + m.insert("menu-icon", QVariant::fromValue(info.getMenuIconPng())); } l.append(QVariant::fromValue(m)); |
