diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-22 01:27:29 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-22 01:27:29 -0500 |
commit | 46e2e93fa23ff2b5e1fd9f40046bb96f6e6a2870 (patch) | |
tree | f643c1f8c35237043b62bc9a438c64cfd95237fd /klipper | |
parent | 2a34ebd1f8117f3e87bb66226461b9d812327438 (diff) | |
download | tdebase-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 'klipper')
-rw-r--r-- | klipper/configdialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/klipper/configdialog.cpp b/klipper/configdialog.cpp index 8f22070cf..2b3620985 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( "misc" ); + const TQPixmap& doc = SmallIcon( "application-vnd.tde.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( "misc" )); + item->setPixmap( 0, SmallIcon( "application-vnd.tde.misc" )); item->setText( 0, i18n("Click here to set the regexp")); item->setText( 1, i18n("<new action>")); } |