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.

58 lines
2.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/gnome2/devhelp/compile.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. --- ./libegg/menu/egg-action.c.orig 2004-05-14 10:36:25.076328384 +0200
  20. +++ ./libegg/menu/egg-action.c 2004-05-14 10:53:26.393064640 +0200
  21. @@ -1,6 +1,7 @@
  22. #include <config.h>
  23. #include "egg-action.h"
  24. #include "../toolbar/eggtoolbutton.h"
  25. +#include "../toolbar/eggtoolbar.h"
  26. #include "../util/eggintl.h"
  27. //#ifndef _
  28. @@ -921,7 +922,7 @@
  29. /* gross hack!!! */
  30. for (tmp = GTK_TOOLBAR (button->parent)->children; tmp; tmp = tmp->next)
  31. {
  32. - GtkToolbarChild *tool_child = tmp->data;
  33. + EggToolbarChild *tool_child = tmp->data;
  34. if (tool_child->widget == button)
  35. {
  36. --- ./libegg/toolbar/eggtoolbar.c.orig 2004-05-14 10:32:25.233789992 +0200
  37. +++ ./libegg/toolbar/eggtoolbar.c 2004-05-14 10:32:51.857742536 +0200
  38. @@ -2570,7 +2570,7 @@
  39. GtkWidget*
  40. egg_toolbar_append_element (EggToolbar *toolbar,
  41. - GtkToolbarChildType type,
  42. + EggToolbarChildType type,
  43. GtkWidget *widget,
  44. const char *text,
  45. const char *tooltip_text,
  46. @@ -2587,7 +2587,7 @@
  47. GtkWidget *
  48. egg_toolbar_prepend_element (EggToolbar *toolbar,
  49. - GtkToolbarChildType type,
  50. + EggToolbarChildType type,
  51. GtkWidget *widget,
  52. const char *text,
  53. const char *tooltip_text,