diff options
author | Timothy Pearson <[email protected]> | 2014-10-22 01:27:24 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2014-10-22 01:27:24 -0500 |
commit | a77f89e1d2793ea3fdb5f481c52791dcfee45c9d (patch) | |
tree | 8ef21f4444a2e00b7b68fd43069e40712cd1c6c1 /src/settingssearchurl.cpp | |
parent | 35eb9e0b167ca846eb1076546fa0c4b289459672 (diff) | |
download | kbibtex-a77f89e1d2793ea3fdb5f481c52791dcfee45c9d.tar.gz kbibtex-a77f89e1d2793ea3fdb5f481c52791dcfee45c9d.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, unknownr14.0.0
Diffstat (limited to 'src/settingssearchurl.cpp')
-rw-r--r-- | src/settingssearchurl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/settingssearchurl.cpp b/src/settingssearchurl.cpp index 53b91ad..07e87b4 100644 --- a/src/settingssearchurl.cpp +++ b/src/settingssearchurl.cpp @@ -70,7 +70,7 @@ namespace KBibTeX for ( TQValueList<Settings::SearchURL*>::ConstIterator it = settings->searchURLs.begin(); it != settings->searchURLs.end(); ++it ) { TDEListViewItem *item = new TDEListViewItem( m_listviewSearchURLs, ( *it ) ->description, ( *it ) ->includeAuthor ? i18n( "Yes" ) : i18n( "No" ), ( *it ) ->url ); - item->setPixmap( 0, SmallIcon( "html" ) ); + item->setPixmap( 0, SmallIcon( "text-html" ) ); } } @@ -204,7 +204,7 @@ namespace KBibTeX if ( item == NULL ) { TDEListViewItem *item = new TDEListViewItem( m_listviewSearchURLs, descr->text(), cbIncludeAuthor->currentItem() == 0 ? i18n( "Yes" ) : i18n( "No" ), url->text() ); - item->setPixmap( 0, SmallIcon( "html" ) ); + item->setPixmap( 0, SmallIcon( "text-html" ) ); } else { |