diff --git a/applets/clipboard/contents/ui/ClipboardPage.qml b/applets/clipboard/contents/ui/ClipboardPage.qml --- a/applets/clipboard/contents/ui/ClipboardPage.qml +++ b/applets/clipboard/contents/ui/ClipboardPage.qml @@ -96,7 +96,7 @@ Layout.fillWidth: true } PlasmaComponents.ToolButton { - iconSource: "edit-delete" + iconSource: "edit-clear-history" tooltip: i18n("Clear history") onClicked: clipboardSource.service("", "clearHistory") } diff --git a/applets/notifications/package/contents/ui/Notifications.qml b/applets/notifications/package/contents/ui/Notifications.qml --- a/applets/notifications/package/contents/ui/Notifications.qml +++ b/applets/notifications/package/contents/ui/Notifications.qml @@ -282,7 +282,7 @@ PlasmaComponents.ToolButton { Layout.rightMargin: spacerSvgFrame.margins.right - iconSource: "edit-delete" + iconSource: "edit-clear-history" tooltip: i18n("Clear History") onClicked: clearHistory() } diff --git a/applets/notifications/package/contents/ui/main.qml b/applets/notifications/package/contents/ui/main.qml --- a/applets/notifications/package/contents/ui/main.qml +++ b/applets/notifications/package/contents/ui/main.qml @@ -147,7 +147,7 @@ } Component.onCompleted: { - plasmoid.setAction("clearNotifications", i18n("Clear Notifications"), "edit-clear") + plasmoid.setAction("clearNotifications", i18n("Clear Notifications"), "edit-clear-history") var clearAction = plasmoid.action("clearNotifications"); clearAction.visible = Qt.binding(function() { return notificationsApplet.notifications && (notificationsApplet.notifications.count > 0 || notificationsApplet.notifications.historyCount > 0);