]> git.eshelyaron.com Git - emacs.git/commitdiff
(update_frame_tool_bar): Use -1 as index
authorJan Djärv <jan.h.d@swipnet.se>
Mon, 13 Aug 2007 06:30:11 +0000 (06:30 +0000)
committerJan Djärv <jan.h.d@swipnet.se>
Mon, 13 Aug 2007 06:30:11 +0000 (06:30 +0000)
to gtk_toolbar_insert.

src/ChangeLog
src/gtkutil.c

index c97fec6480824053610a88425c5d6f878992058f..f8dc0be7ed5c1ee4f69ec9741b9c14166f0eea9d 100644 (file)
@@ -1,3 +1,8 @@
+2007-08-13  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
+
+       * gtkutil.c (update_frame_tool_bar): Use -1 as index
+       to gtk_toolbar_insert.
+
 2007-08-13  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * fileio.c (Finsert_file_contents): Yet Another Int/Lisp_Object Mixup.
index 29aafc013e9ce18b285414ac2b4c25533870f725..7dc451a5d04ac9dc16a5efa1537a53348dcb71db 100644 (file)
@@ -3802,7 +3802,7 @@ update_frame_tool_bar (f)
               gtk_container_add (GTK_CONTAINER (weventbox), wbutton);
               ti = gtk_tool_item_new ();
               gtk_container_add (GTK_CONTAINER (ti), weventbox);
-              gtk_toolbar_insert (GTK_TOOLBAR (x->toolbar_widget), ti, i);
+              gtk_toolbar_insert (GTK_TOOLBAR (x->toolbar_widget), ti, -1);
             }
           continue;
         }
@@ -3819,7 +3819,7 @@ update_frame_tool_bar (f)
           gtk_container_add (GTK_CONTAINER (weventbox), wbutton);
           ti = gtk_tool_item_new ();
           gtk_container_add (GTK_CONTAINER (ti), weventbox);
-          gtk_toolbar_insert (GTK_TOOLBAR (x->toolbar_widget), ti, i);
+          gtk_toolbar_insert (GTK_TOOLBAR (x->toolbar_widget), ti, -1);
 
 
           /* The EMACS_INT cast avoids a warning. */