diff options
author | Christopher Blizzard <blizzard@redhat.com> | 2003-05-10 06:47:57 +0800 |
---|---|---|
committer | Christopher Blizzard <blizzard@src.gnome.org> | 2003-05-10 06:47:57 +0800 |
commit | a6fa796d9e009463eaca187f41d3ee38f514d18d (patch) | |
tree | ad63a004f71a25908e140765cb33821eddf80a70 /src | |
parent | 4db03d7b7b5321721f581989f8df0cb36d6aa4a7 (diff) | |
download | gsoc2013-epiphany-a6fa796d9e009463eaca187f41d3ee38f514d18d.tar gsoc2013-epiphany-a6fa796d9e009463eaca187f41d3ee38f514d18d.tar.gz gsoc2013-epiphany-a6fa796d9e009463eaca187f41d3ee38f514d18d.tar.bz2 gsoc2013-epiphany-a6fa796d9e009463eaca187f41d3ee38f514d18d.tar.lz gsoc2013-epiphany-a6fa796d9e009463eaca187f41d3ee38f514d18d.tar.xz gsoc2013-epiphany-a6fa796d9e009463eaca187f41d3ee38f514d18d.tar.zst gsoc2013-epiphany-a6fa796d9e009463eaca187f41d3ee38f514d18d.zip |
Fix 64 bit problems. Patch from katzj@redhat.com.
2003-05-09 Christopher Blizzard <blizzard@redhat.com>
* src/ephy-navigation-action.c (activate_up_menu_item_cb):
* src/ephy-navigation-action.c (activate_back_or_forward_menu_item_cb):
* lib/eel-gconf-extensions.c (ephy_notification_add):
Fix 64 bit problems. Patch from katzj@redhat.com.
Diffstat (limited to 'src')
-rw-r--r-- | src/ephy-navigation-action.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ephy-navigation-action.c b/src/ephy-navigation-action.c index 6073292ac..f53a43e82 100644 --- a/src/ephy-navigation-action.c +++ b/src/ephy-navigation-action.c @@ -94,7 +94,7 @@ activate_back_or_forward_menu_item_cb (GtkWidget *menu, EphyWindow *window) embed = ephy_window_get_active_embed (window); g_return_if_fail (embed != NULL); - go_nth = (int)g_object_get_data (G_OBJECT(menu), "go_nth"); + go_nth = GPOINTER_TO_INT(g_object_get_data (G_OBJECT(menu), "go_nth")); ephy_embed_shistory_go_nth (embed, go_nth); } @@ -110,7 +110,7 @@ activate_up_menu_item_cb (GtkWidget *menu, EphyWindow *window) embed = ephy_window_get_active_embed (window); g_return_if_fail (embed != NULL); - go_nth = (int)g_object_get_data (G_OBJECT(menu), "go_nth"); + go_nth = GPOINTER_TO_INT(g_object_get_data (G_OBJECT(menu), "go_nth")); ephy_embed_get_go_up_list (embed, &l); |