diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-22 14:24:31 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-22 14:24:31 -0500 |
commit | 207e13471364666e6a6fdceed64207f986899bbc (patch) | |
tree | 532ea96c80c56c4f9d6a24d36a2a704c96ee3815 /tdeio | |
parent | 6111385e9a4283e5f909753cdb690b1cbc9206ea (diff) | |
download | tdelibs-207e13471364666e6a6fdceed64207f986899bbc.tar.gz tdelibs-207e13471364666e6a6fdceed64207f986899bbc.zip |
Fix exec icon location and bring it into XDG compliance
Diffstat (limited to 'tdeio')
-rw-r--r-- | tdeio/tdefile/knotifydialog.cpp | 2 | ||||
-rw-r--r-- | tdeio/tdeio/kurifilter.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/tdeio/tdefile/knotifydialog.cpp b/tdeio/tdefile/knotifydialog.cpp index eee9c9ee5..5d1aba62d 100644 --- a/tdeio/tdefile/knotifydialog.cpp +++ b/tdeio/tdefile/knotifydialog.cpp @@ -237,7 +237,7 @@ KNotifyWidget::KNotifyWidget( TQWidget *parent, const char *name, m_listview->setFullWidth( true ); m_listview->setAllColumnsShowFocus( true ); - TQPixmap pexec = SmallIcon("exec"); + TQPixmap pexec = SmallIcon("application-x-executable"); TQPixmap pstderr = SmallIcon("terminal"); TQPixmap pmessage = SmallIcon("application-vnd.tde.info"); TQPixmap plogfile = SmallIcon("text-x-log"); diff --git a/tdeio/tdeio/kurifilter.cpp b/tdeio/tdeio/kurifilter.cpp index 809e2f504..3d79d0bfd 100644 --- a/tdeio/tdeio/kurifilter.cpp +++ b/tdeio/tdeio/kurifilter.cpp @@ -191,7 +191,7 @@ TQString KURIFilterData::iconName() } else { // use default - m_strIconName = TQString::fromLatin1("exec"); + m_strIconName = TQString::fromLatin1("application-x-executable"); } #else // HAVE_ELFICON // Try to find an icon with the same name as the binary (useful for non-tde apps) @@ -205,7 +205,7 @@ TQString KURIFilterData::iconName() } else { // use default - m_strIconName = TQString::fromLatin1("exec"); + m_strIconName = TQString::fromLatin1("application-x-executable"); } // Try to load from elf file (if supported) // Check for an embedded icon |