aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/com.luxoft.vehicle/stores/VehicleStore.qml2
-rw-r--r--apps/com.pelagicore.apps.settings/helper/Helper.qml2
-rw-r--r--apps/com.pelagicore.map/stores/MapStore.qml6
3 files changed, 0 insertions, 10 deletions
diff --git a/apps/com.luxoft.vehicle/stores/VehicleStore.qml b/apps/com.luxoft.vehicle/stores/VehicleStore.qml
index 82a0aae1..d549b2b4 100644
--- a/apps/com.luxoft.vehicle/stores/VehicleStore.qml
+++ b/apps/com.luxoft.vehicle/stores/VehicleStore.qml
@@ -88,8 +88,6 @@ QtObject {
notification.summary = settings3D.value("runtime3D", "qt3d") === "qt3d"
? qsTr("Qt3D Runtime is requested")
: qsTr("Qt 3D Studio Runtime is requested");
- // line below should be removed when AUTOSUITE-1366 will be fixed
- notification.icon = Qt.resolvedUrl("../icon.png");
notification.sticky = true;
notification.show();
}
diff --git a/apps/com.pelagicore.apps.settings/helper/Helper.qml b/apps/com.pelagicore.apps.settings/helper/Helper.qml
index b8c97401..8436e797 100644
--- a/apps/com.pelagicore.apps.settings/helper/Helper.qml
+++ b/apps/com.pelagicore.apps.settings/helper/Helper.qml
@@ -44,8 +44,6 @@ QtObject {
var notification = ApplicationInterface.createNotification();
notification.summary = summary;
notification.body = body;
- // line below should be removed when AUTOSUITE-1366 will be fixed
- notification.icon = Qt.resolvedUrl("../icon.png");
notification.sticky = true;
notification.show();
}
diff --git a/apps/com.pelagicore.map/stores/MapStore.qml b/apps/com.pelagicore.map/stores/MapStore.qml
index a4cd5315..602201e8 100644
--- a/apps/com.pelagicore.map/stores/MapStore.qml
+++ b/apps/com.pelagicore.map/stores/MapStore.qml
@@ -318,8 +318,6 @@ QtObject {
notification.summary = qsTr("Offline mode");
notification.body = qsTr("Search and navigation are not available in offline mode");
notification.sticky = true;
- // line below should be removed when AUTOSUITE-1366 will be fixed
- notification.icon = Qt.resolvedUrl("../icon.png");
notification.show();
notificationTimer.start();
}
@@ -329,8 +327,6 @@ QtObject {
notification.summary = qsTr("Offline map");
notification.body = qsTr("Offline Map only available in Light Theme");
notification.sticky = true;
- // line below should be removed when AUTOSUITE-1366 will be fixed
- notification.icon = Qt.resolvedUrl("../icon.png");
notification.show();
}
@@ -339,8 +335,6 @@ QtObject {
notification.summary = qsTr("Online map");
notification.body = qsTr("You are now using online map from Mapbox server");
notification.sticky = true;
- // line below should be removed when AUTOSUITE-1366 will be fixed
- notification.icon = Qt.resolvedUrl("../icon.png");
notification.show();
}
}