]> git.eshelyaron.com Git - emacs.git/commitdiff
* keyboard.c (parse_tool_bar_item): For QClabel, set TOOL_BAR_ITEM_LABEL not HELP.
authorJan D <jan.h.d@swipnet.se>
Fri, 17 Sep 2010 09:54:28 +0000 (11:54 +0200)
committerJan D <jan.h.d@swipnet.se>
Fri, 17 Sep 2010 09:54:28 +0000 (11:54 +0200)
src/ChangeLog
src/keyboard.c

index 71a1caa38e831f63e72030b5fbea8d8937a63b63..df7202fc24387c17bb516cd626054dceecdfb356 100644 (file)
@@ -1,3 +1,8 @@
+2010-09-17  Jan Djärv  <jan.h.d@swipnet.se>
+
+       * keyboard.c (parse_tool_bar_item): For QClabel, set TOOL_BAR_ITEM_LABEL
+       not HELP.
+
 2010-09-17  Stephen Berman  <stephen.berman@gmx.net>
 
        * frame.c (Ftool_bar_pixel_width): New function to expose tool
index 7b1a39403f39a5bb81c914761608afed68ba2bad..eed031a3c2e6ca29ce05d958a549681d59fdc450 100644 (file)
@@ -8305,7 +8305,7 @@ parse_tool_bar_item (Lisp_Object key, Lisp_Object item)
         {
           const char *bad_label = "!!?GARBLED ITEM?!!";
           /* `:label LABEL-STRING'.  */
-          PROP (TOOL_BAR_ITEM_HELP) = STRINGP (value)
+          PROP (TOOL_BAR_ITEM_LABEL) = STRINGP (value)
             ? value
             : make_string (bad_label, strlen (bad_label));
           have_label = 1;