gdk/abicheck.sh filter out G_GNUC stuff when doing the compare.

Thu Nov 25 14:32:35 2004  Manish Singh  <yosh@gimp.org>

        * gdk/abicheck.sh
        * gtk/abicheck.sh: filter out G_GNUC stuff when doing the compare.

        * gtk/gtkmenuitem.c (gtk_menu_shell_button_release): add
        GTK_MENU_ITEM() cast.
This commit is contained in:
Manish Singh 2004-11-25 22:35:52 +00:00 committed by Manish Singh
parent 3a666542f3
commit 1d99ca890a
7 changed files with 35 additions and 3 deletions

View File

@ -1,3 +1,11 @@
Thu Nov 25 14:32:35 2004 Manish Singh <yosh@gimp.org>
* gdk/abicheck.sh
* gtk/abicheck.sh: filter out G_GNUC stuff when doing the compare.
* gtk/gtkmenuitem.c (gtk_menu_shell_button_release): add
GTK_MENU_ITEM() cast.
2004-11-25 Kjartan Maraas <kmaraas@gnome.org>
* configure.in: Add forgotten «nb» to ALL_LINGUAS.

View File

@ -1,3 +1,11 @@
Thu Nov 25 14:32:35 2004 Manish Singh <yosh@gimp.org>
* gdk/abicheck.sh
* gtk/abicheck.sh: filter out G_GNUC stuff when doing the compare.
* gtk/gtkmenuitem.c (gtk_menu_shell_button_release): add
GTK_MENU_ITEM() cast.
2004-11-25 Kjartan Maraas <kmaraas@gnome.org>
* configure.in: Add forgotten «nb» to ALL_LINGUAS.

View File

@ -1,3 +1,11 @@
Thu Nov 25 14:32:35 2004 Manish Singh <yosh@gimp.org>
* gdk/abicheck.sh
* gtk/abicheck.sh: filter out G_GNUC stuff when doing the compare.
* gtk/gtkmenuitem.c (gtk_menu_shell_button_release): add
GTK_MENU_ITEM() cast.
2004-11-25 Kjartan Maraas <kmaraas@gnome.org>
* configure.in: Add forgotten «nb» to ALL_LINGUAS.

View File

@ -1,3 +1,11 @@
Thu Nov 25 14:32:35 2004 Manish Singh <yosh@gimp.org>
* gdk/abicheck.sh
* gtk/abicheck.sh: filter out G_GNUC stuff when doing the compare.
* gtk/gtkmenuitem.c (gtk_menu_shell_button_release): add
GTK_MENU_ITEM() cast.
2004-11-25 Kjartan Maraas <kmaraas@gnome.org>
* configure.in: Add forgotten «nb» to ALL_LINGUAS.

View File

@ -1,5 +1,5 @@
#! /bin/sh
cpp -P -DGDK_WINDOWING_X11 ${srcdir:-.}/gdk.symbols | sed -e '/^$/d' | sort > expected-abi
cpp -P -DGDK_WINDOWING_X11 ${srcdir:-.}/gdk.symbols | sed -e '/^$/d' -e 's/ G_GNUC.*$//' | sort > expected-abi
nm -D .libs/libgdk-x11-2.0.so | grep " T " | cut -d ' ' -f 3 | sort > actual-abi
diff -u expected-abi actual-abi && rm expected-abi actual-abi

View File

@ -1,5 +1,5 @@
#! /bin/sh
cpp -P -DG_OS_UNIX -DGTK_WINDOWING_X11 ${srcdir:-.}/gtk.symbols | sed -e '/^$/d' | sort > expected-abi
cpp -P -DG_OS_UNIX -DGTK_WINDOWING_X11 ${srcdir:-.}/gtk.symbols | sed -e '/^$/d' -e 's/ G_GNUC.*$//' | sort > expected-abi
nm -D .libs/libgtk-x11-2.0.so | grep " T " | cut -d ' ' -f 3 | sort > actual-abi
diff -u expected-abi actual-abi && rm expected-abi actual-abi

View File

@ -510,7 +510,7 @@ gtk_menu_shell_button_release (GtkWidget *widget,
if (GTK_MENU_ITEM (menu_item)->submenu == NULL)
gtk_menu_shell_activate_item (menu_shell, menu_item, TRUE);
else
gtk_menu_item_select (menu_item);
gtk_menu_item_select (GTK_MENU_ITEM (menu_item));
return TRUE;
}
else if (menu_item &&