From 145f5ae315c8e2b04246b918bc0ef78ac92ee5b4 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Wed, 22 Oct 2014 01:27:29 -0500 Subject: 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 --- kicker-applets/kolourpicker/kolourpicker.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'kicker-applets/kolourpicker') diff --git a/kicker-applets/kolourpicker/kolourpicker.cpp b/kicker-applets/kolourpicker/kolourpicker.cpp index 8f82fe2..77e4ff8 100644 --- a/kicker-applets/kolourpicker/kolourpicker.cpp +++ b/kicker-applets/kolourpicker/kolourpicker.cpp @@ -293,21 +293,21 @@ TQPopupMenu *KolourPicker::copyPopup(const TQColor &c, bool title) const popup->insertItem(SmallIcon("text"), value); // HTML, lower case hex chars value.sprintf("#%.2x%.2x%.2x", c.red(), c.green(), c.blue()); - popup->insertItem(SmallIcon("html"), value); + popup->insertItem(SmallIcon("text-html"), value); if (value.find(TQRegExp("[a-f]")) >= 0) { // HTML, upper case hex chars value.sprintf("#%.2X%.2X%.2X", c.red(), c.green(), c.blue()); - popup->insertItem(SmallIcon("html"), value); + popup->insertItem(SmallIcon("text-html"), value); } // lower case hex chars value.sprintf( "%.2x%.2x%.2x", c.red(), c.green(), c.blue() ); - popup->insertItem( SmallIcon( "html" ), value ); + popup->insertItem( SmallIcon( "text-html" ), value ); if ( value.find( TQRegExp( "[a-f]" ) ) >= 0 ) { // upper case hex chars value.sprintf( "%.2X%.2X%.2X", c.red(), c.green(), c.blue() ); - popup->insertItem( SmallIcon( "html" ), value ); + popup->insertItem( SmallIcon( "text-html" ), value ); } // Color name TQStringList names = colorNames(c.red(), c.green(), c.blue()); -- cgit v1.2.1