treeviewx-0.5.1-treeview-xpm-not-xbm.patch 519 B

1234567891011121314151617
  1. Description: Fix the extension of the icon
  2. Author: Olly Betts <olly@survex.com>
  3. Last-Update: 2014-06-21
  4. Forwarded: http://code.google.com/p/treeviewx/issues/detail?id=4
  5. --- tv-0.5.orig/tv.cpp
  6. +++ tv-0.5/tv.cpp
  7. @@ -215,7 +215,7 @@
  8. frame->SetIcon(wxIcon("app")); // use the name of the icon in the resource file
  9. #endif
  10. #if defined(__WXGTK__) || defined(__WXMOTIF__)
  11. - frame->SetIcon(wxIcon(wxT("bitmaps/treeview.xbm")));
  12. + frame->SetIcon(wxIcon(wxT("/usr/share/pixmaps/treeviewx.xpm")));
  13. #endif
  14. #ifdef __WXMAC__