summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-22 11:55:14 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-22 11:55:14 -0500
commit2ee8ceae1318910e3ce064292ec50be03c0c7e05 (patch)
tree9b7e18be61bb6db1e063678bcbe50aa6ccc76153
parent46e2e93fa23ff2b5e1fd9f40046bb96f6e6a2870 (diff)
downloadtdebase-2ee8ceae.tar.gz
tdebase-2ee8ceae.zip
Repair mimetype icon usage, part 1. The following are not fully verified in source as of this commit due to ubiquity: info, unknown
-rw-r--r--klipper/configdialog.cpp4
-rw-r--r--konqueror/keditbookmarks/actionsimpl.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/klipper/configdialog.cpp b/klipper/configdialog.cpp
index 2b3620985..8f22070cf 100644
--- a/klipper/configdialog.cpp
+++ b/klipper/configdialog.cpp
@@ -259,7 +259,7 @@ ActionWidget::ActionWidget( const ActionList *list, ConfigDialog* configWidget,
TQListViewItem *after = 0L; // QListView's default inserting really sucks
ActionListIterator it( *list );
- const TQPixmap& doc = SmallIcon( "application-vnd.tde.misc" );
+ const TQPixmap& doc = SmallIcon( "misc" );
const TQPixmap& exec = SmallIcon( "exec" );
for ( action = it.current(); action; action = ++it ) {
@@ -361,7 +361,7 @@ void ActionWidget::slotItemChanged( TQListViewItem *item, const TQPoint&, int co
void ActionWidget::slotAddAction()
{
TQListViewItem *item = new TQListViewItem( listView );
- item->setPixmap( 0, SmallIcon( "application-vnd.tde.misc" ));
+ item->setPixmap( 0, SmallIcon( "misc" ));
item->setText( 0, i18n("Click here to set the regexp"));
item->setText( 1, i18n("<new action>"));
}
diff --git a/konqueror/keditbookmarks/actionsimpl.cpp b/konqueror/keditbookmarks/actionsimpl.cpp
index 67e694dd5..b1b7c8c83 100644
--- a/konqueror/keditbookmarks/actionsimpl.cpp
+++ b/konqueror/keditbookmarks/actionsimpl.cpp
@@ -202,7 +202,7 @@ void KEBApp::createActions() {
i18n("Export to &Opera Bookmarks..."), "opera", 0,
TQT_TQOBJECT(actn), TQT_SLOT( slotExportOpera() ), actionCollection(), "exportOpera");
(void) new TDEAction(
- i18n("Export to &HTML Bookmarks..."), "html", 0,
+ i18n("Export to &HTML Bookmarks..."), "text-html", 0,
TQT_TQOBJECT(actn), TQT_SLOT( slotExportHTML() ), actionCollection(), "exportHTML");
(void) new TDEAction(
i18n("Export to &IE Bookmarks..."), 0,