diff options
author | Timothy Pearson <[email protected]> | 2015-03-02 09:09:21 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2015-03-02 09:09:21 -0600 |
commit | 918032ad74497cd54b574ee7c84de9faa76f6489 (patch) | |
tree | 46686417c563a8c5da1f6c7603a2c2dc02225816 | |
parent | a6933b0079f0a550941fe432bf40c6ba31b208a0 (diff) | |
download | ksquirrel-918032ad74497cd54b574ee7c84de9faa76f6489.tar.gz ksquirrel-918032ad74497cd54b574ee7c84de9faa76f6489.zip |
Rename most device icons to comply with XDG standards
-rw-r--r-- | ksquirrel/sidebar/sq_mountview.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ksquirrel/sidebar/sq_mountview.cpp b/ksquirrel/sidebar/sq_mountview.cpp index cc0850b..ed547fa 100644 --- a/ksquirrel/sidebar/sq_mountview.cpp +++ b/ksquirrel/sidebar/sq_mountview.cpp @@ -39,9 +39,9 @@ SQ_MountView::SQ_MountView(TQWidget *parent, const char *name) : TDEListView(par m_inst = this; popup = new TDEPopupMenu; - id_mount = popup->insertItem(SQ_IconLoader::instance()->loadIcon("hdd_mount", TDEIcon::Desktop, TDEIcon::SizeSmall), + id_mount = popup->insertItem(SQ_IconLoader::instance()->loadIcon("drive-harddisk-mounted", TDEIcon::Desktop, TDEIcon::SizeSmall), i18n("Mount"), this, TQT_SLOT(slotMount())); - id_unmount = popup->insertItem(SQ_IconLoader::instance()->loadIcon("hdd_unmount", TDEIcon::Desktop, TDEIcon::SizeSmall), + id_unmount = popup->insertItem(SQ_IconLoader::instance()->loadIcon("drive-harddisk", TDEIcon::Desktop, TDEIcon::SizeSmall), i18n("Unmount"), this, TQT_SLOT(slotUnmount())); popup->insertItem(SQ_IconLoader::instance()->loadIcon("reload", TDEIcon::Desktop, TDEIcon::SizeSmall), i18n("Refresh"), this, TQT_SLOT(slotRefresh())); |