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.

39 lines
1.3 KiB

  1. --- ./libegg/menu/egg-action.c.orig 2004-05-14 10:36:25.076328384 +0200
  2. +++ ./libegg/menu/egg-action.c 2004-05-14 10:53:26.393064640 +0200
  3. @@ -1,6 +1,7 @@
  4. #include <config.h>
  5. #include "egg-action.h"
  6. #include "../toolbar/eggtoolbutton.h"
  7. +#include "../toolbar/eggtoolbar.h"
  8. #include "../util/eggintl.h"
  9. //#ifndef _
  10. @@ -921,7 +922,7 @@
  11. /* gross hack!!! */
  12. for (tmp = GTK_TOOLBAR (button->parent)->children; tmp; tmp = tmp->next)
  13. {
  14. - GtkToolbarChild *tool_child = tmp->data;
  15. + EggToolbarChild *tool_child = tmp->data;
  16. if (tool_child->widget == button)
  17. {
  18. --- ./libegg/toolbar/eggtoolbar.c.orig 2004-05-14 10:32:25.233789992 +0200
  19. +++ ./libegg/toolbar/eggtoolbar.c 2004-05-14 10:32:51.857742536 +0200
  20. @@ -2570,7 +2570,7 @@
  21. GtkWidget*
  22. egg_toolbar_append_element (EggToolbar *toolbar,
  23. - GtkToolbarChildType type,
  24. + EggToolbarChildType type,
  25. GtkWidget *widget,
  26. const char *text,
  27. const char *tooltip_text,
  28. @@ -2587,7 +2587,7 @@
  29. GtkWidget *
  30. egg_toolbar_prepend_element (EggToolbar *toolbar,
  31. - GtkToolbarChildType type,
  32. + EggToolbarChildType type,
  33. GtkWidget *widget,
  34. const char *text,
  35. const char *tooltip_text,