Repair mimetype icon usage, part 1. The following are not fully verified in source as of this commit due to ubiquity: info, unknown

pull/2/head
Timothy Pearson 10 years ago
parent 46e2e93fa2
commit 2ee8ceae13

@ -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>"));
}

@ -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,

Loading…
Cancel
Save