From: Christian Butcher Date: Mon, 27 Jul 2015 20:29:00 +0000 (+0200) Subject: Change the Dolphin places icons: X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/52136255d86cfdf4bcfcd865bfa14cdd481b3a77?ds=inline 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 --- 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"))); }