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:

committed by
Manish Singh

parent
3a666542f3
commit
1d99ca890a
@ -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>
|
2004-11-25 Kjartan Maraas <kmaraas@gnome.org>
|
||||||
|
|
||||||
* configure.in: Add forgotten «nb» to ALL_LINGUAS.
|
* configure.in: Add forgotten «nb» to ALL_LINGUAS.
|
||||||
|
@ -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>
|
2004-11-25 Kjartan Maraas <kmaraas@gnome.org>
|
||||||
|
|
||||||
* configure.in: Add forgotten «nb» to ALL_LINGUAS.
|
* configure.in: Add forgotten «nb» to ALL_LINGUAS.
|
||||||
|
@ -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>
|
2004-11-25 Kjartan Maraas <kmaraas@gnome.org>
|
||||||
|
|
||||||
* configure.in: Add forgotten «nb» to ALL_LINGUAS.
|
* configure.in: Add forgotten «nb» to ALL_LINGUAS.
|
||||||
|
@ -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>
|
2004-11-25 Kjartan Maraas <kmaraas@gnome.org>
|
||||||
|
|
||||||
* configure.in: Add forgotten «nb» to ALL_LINGUAS.
|
* configure.in: Add forgotten «nb» to ALL_LINGUAS.
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#! /bin/sh
|
#! /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
|
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
|
diff -u expected-abi actual-abi && rm expected-abi actual-abi
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#! /bin/sh
|
#! /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
|
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
|
diff -u expected-abi actual-abi && rm expected-abi actual-abi
|
||||||
|
@ -510,7 +510,7 @@ gtk_menu_shell_button_release (GtkWidget *widget,
|
|||||||
if (GTK_MENU_ITEM (menu_item)->submenu == NULL)
|
if (GTK_MENU_ITEM (menu_item)->submenu == NULL)
|
||||||
gtk_menu_shell_activate_item (menu_shell, menu_item, TRUE);
|
gtk_menu_shell_activate_item (menu_shell, menu_item, TRUE);
|
||||||
else
|
else
|
||||||
gtk_menu_item_select (menu_item);
|
gtk_menu_item_select (GTK_MENU_ITEM (menu_item));
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
else if (menu_item &&
|
else if (menu_item &&
|
||||||
|
Reference in New Issue
Block a user