diff --git a/src/transferengine.cpp b/src/transferengine.cpp index cc9bc4e..b07c29b 100644 --- a/src/transferengine.cpp +++ b/src/transferengine.cpp @@ -392,7 +392,7 @@ void TransferEnginePrivate::sendNotification(TransferEngineData::TransferType ty MNotification notification(eventType); notification.setSummary(fileName); notification.setBody(msgNBody); - notification.setImage("icon-l-share"); + notification.setImage("icon-lock-transfer"); // Check if we have existing group and use that instead of creating a new one. @@ -410,7 +410,7 @@ void TransferEnginePrivate::sendNotification(TransferEngineData::TransferType ty // No existing groups, create a new one from the scratch if (group == 0){ group = new MNotificationGroup(eventType); - group->setImage("icon-l-share"); + group->setImage("icon-lock-transfer"); // Add to the groups, it will be deleted when the list is cleaned groups.append(group); }