From 52136255d86cfdf4bcfcd865bfa14cdd481b3a77 Mon Sep 17 00:00:00 2001 From: Christian Butcher Date: Mon, 27 Jul 2015 22:29:00 +0200 Subject: [PATCH] Change the Dolphin places icons: * folder-txt => folder-text * folder-video => folder-videos * folder-image => folder-images Thanks to andreas_k and Christian Butcher! BUG: 347257 FIXED-IN: 15.08.0 --- src/panels/places/placesitemmodel.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/panels/places/placesitemmodel.cpp b/src/panels/places/placesitemmodel.cpp index f3d344963..3143b7410 100644 --- a/src/panels/places/placesitemmodel.cpp +++ b/src/panels/places/placesitemmodel.cpp @@ -917,16 +917,16 @@ void PlacesItemModel::createSystemBookmarks() "view-calendar-month", I18N_NOOP2("KFile System Bookmarks", "Last Month"))); m_systemBookmarks.append(SystemBookmarkData(QUrl("search:/documents"), - "folder-txt", + "folder-text", I18N_NOOP2("KFile System Bookmarks", "Documents"))); m_systemBookmarks.append(SystemBookmarkData(QUrl("search:/images"), - "folder-image", + "folder-images", I18N_NOOP2("KFile System Bookmarks", "Images"))); m_systemBookmarks.append(SystemBookmarkData(QUrl("search:/audio"), "folder-sound", I18N_NOOP2("KFile System Bookmarks", "Audio Files"))); m_systemBookmarks.append(SystemBookmarkData(QUrl("search:/videos"), - "folder-video", + "folder-videos", I18N_NOOP2("KFile System Bookmarks", "Videos"))); } -- 2.47.3