mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

80 lines
3.1 KiB

  1. # --- ROCK-COPYRIGHT-NOTE-BEGIN ---
  2. #
  3. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  4. # Please add additional copyright information _after_ the line containing
  5. # the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
  6. # the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
  7. #
  8. # ROCK Linux: rock-src/package/public/cinepaint/cinepaint-gcc4.patch
  9. # ROCK Linux is Copyright (C) 1998 - 2006 Clifford Wolf
  10. #
  11. # This patch file is dual-licensed. It is available under the license the
  12. # patched project is licensed under, as long as it is an OpenSource license
  13. # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
  14. # of the GNU General Public License as published by the Free Software
  15. # Foundation; either version 2 of the License, or (at your option) any later
  16. # version.
  17. #
  18. # --- ROCK-COPYRIGHT-NOTE-END ---
  19. --- ./app/histogram_tool.c.vanilla 2005-12-14 16:29:07.000000000 +0100
  20. +++ ./app/histogram_tool.c 2005-12-14 16:31:31.000000000 +0100
  21. @@ -84,7 +84,7 @@
  22. static void *histogram_tool_options = NULL;
  23. static HistogramToolDialog *histogram_tool_dialog = NULL;
  24. -static Argument * histogram_invoker (Argument *args);
  25. +Argument * histogram_invoker (Argument *args);
  26. static char * histogram_info_names[7] =
  27. {
  28. @@ -538,7 +538,7 @@
  29. /*
  30. * TBD - WRB -make work with float data
  31. */
  32. -static Argument *
  33. +Argument *
  34. histogram_invoker (Argument *args)
  35. {
  36. Argument *return_args;
  37. --- ./plug-ins/bracketing_to_hdr/Fl_Cartesius.cpp.vanilla 2005-12-15 02:17:32.000000000 +0100
  38. +++ ./plug-ins/bracketing_to_hdr/Fl_Cartesius.cpp 2005-12-15 02:33:44.000000000 +0100
  39. @@ -804,7 +804,7 @@
  40. case FL_MOVE:
  41. mk_coord_picker_str(wx_from_x(Fl::event_x()), wy_from_y(Fl::event_y()));
  42. //draw_coord_picker(); // now via the damage() channel...
  43. - damage (FL_DAMAGE_USER1); // my code word for "draw only coord picker"
  44. + //damage (FL_DAMAGE_USER1); // my code word for "draw only coord picker"
  45. return 1;
  46. case FL_ENTER:
  47. @@ -896,13 +896,14 @@
  48. // Check if only the coord picker is to update (before Fl_Group::draw(),
  49. // which clears all!) Note: draw_coord() doesn't need win-world-map...
  50. -
  51. +
  52. +/*
  53. if (damage() == FL_DAMAGE_USER1) { // &-question fails (MOVE-Problem)
  54. draw_coord_picker();
  55. TRACE_DRAW(("only coord_picker\n"))
  56. return;
  57. }
  58. -
  59. +*/
  60. if (rejustify_) justify(); // Before draw_children(), so that children
  61. // have the right map too
  62. --- ./plug-ins/bracketing_to_hdr/fl_print_event.cpp.vanilla 2005-12-15 02:34:37.000000000 +0100
  63. +++ ./plug-ins/bracketing_to_hdr/fl_print_event.cpp 2005-12-15 02:34:57.000000000 +0100
  64. @@ -89,8 +89,8 @@
  65. if (mask & FL_DAMAGE_EXPOSE) strcat(s," EXPOSE");
  66. if (mask & FL_DAMAGE_SCROLL) strcat(s," SCROLL");
  67. if (mask & FL_DAMAGE_OVERLAY) strcat(s," OVERLAY");
  68. - if (mask & FL_DAMAGE_USER1) strcat(s," USER1");
  69. - if (mask & FL_DAMAGE_USER2) strcat(s," USER2");
  70. +// if (mask & FL_DAMAGE_USER1) strcat(s," USER1");
  71. +// if (mask & FL_DAMAGE_USER2) strcat(s," USER2");
  72. if (mask & FL_DAMAGE_ALL) strcat(s," ALL");
  73. }
  74. printf("damage mask: %d: %s", mask, s);