summaryrefslogtreecommitdiffstats
path: root/konqueror
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-22 01:27:29 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-22 01:27:29 -0500
commit46e2e93fa23ff2b5e1fd9f40046bb96f6e6a2870 (patch)
treef643c1f8c35237043b62bc9a438c64cfd95237fd /konqueror
parent2a34ebd1f8117f3e87bb66226461b9d812327438 (diff)
downloadtdebase-46e2e93fa23ff2b5e1fd9f40046bb96f6e6a2870.tar.gz
tdebase-46e2e93fa23ff2b5e1fd9f40046bb96f6e6a2870.zip
Bring most mimetypes in line with XDG specifications. The following are not fully verified in source as of this commit due to ubiquity: html, empty, info, make, man, misc, source, unknown
Diffstat (limited to 'konqueror')
-rw-r--r--konqueror/listview/konq_listviewwidget.cc2
-rw-r--r--konqueror/sidebar/sidebar_widget.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/konqueror/listview/konq_listviewwidget.cc b/konqueror/listview/konq_listviewwidget.cc
index 75d2c995c..0f245a5c5 100644
--- a/konqueror/listview/konq_listviewwidget.cc
+++ b/konqueror/listview/konq_listviewwidget.cc
@@ -842,7 +842,7 @@ void KonqBaseListViewWidget::startDrag()
{
int iconSize = m_pBrowserView->m_pProps->iconSize();
iconSize = iconSize ? iconSize : TDEGlobal::iconLoader()->currentSize( TDEIcon::Small ); // Default = small
- pixmap2 = DesktopIcon( "tdemultiple", iconSize );
+ pixmap2 = DesktopIcon( "application-vnd.tde.tdemultiple", iconSize );
if ( pixmap2.isNull() )
kdWarning(1202) << "Could not find multiple pixmap" << endl;
}
diff --git a/konqueror/sidebar/sidebar_widget.cpp b/konqueror/sidebar/sidebar_widget.cpp
index 8eefa7c34..096cd08e3 100644
--- a/konqueror/sidebar/sidebar_widget.cpp
+++ b/konqueror/sidebar/sidebar_widget.cpp
@@ -874,7 +874,7 @@ bool Sidebar_Widget::eventFilter(TQObject *obj, TQEvent *ev)
if (!m_buttonPopup)
{
m_buttonPopup=new TDEPopupMenu(this, "Sidebar_Widget::ButtonPopup");
- m_buttonPopup->insertTitle(SmallIcon("unknown"), "", 50);
+ m_buttonPopup->insertTitle(SmallIcon("text-x-katefilelist"), "", 50);
m_buttonPopup->insertItem(SmallIconSet("text"), i18n("Set Name..."),4); // Item to open a dialog to change the name of the sidebar item (by Pupeno)
m_buttonPopup->insertItem(SmallIconSet("www"), i18n("Set URL..."),2);
m_buttonPopup->insertItem(SmallIconSet("icons"), i18n("Set Icon..."),1);