]> git.eshelyaron.com Git - emacs.git/commitdiff
* nsmenu.m (update_frame_tool_bar): Remove NSLog on invalid image.
authorJan Djärv <jan.h.d@swipnet.se>
Thu, 2 Dec 2010 09:33:57 +0000 (10:33 +0100)
committerJan Djärv <jan.h.d@swipnet.se>
Thu, 2 Dec 2010 09:33:57 +0000 (10:33 +0100)
src/ChangeLog
src/nsmenu.m

index 83d6d4c6e8842aba1c5fa30200914c331bcd1693..dc6a02d7faf6139af1bb9e2c000dc852eac22870 100644 (file)
@@ -1,5 +1,7 @@
 2010-12-02  Jan Djärv  <jan.h.d@swipnet.se>
 
+       * nsmenu.m (update_frame_tool_bar): Remove NSLog on invalid image.
+
        * nsterm.m (ns_draw_glyph_string): Switch fore- and background if
        drawing text under filled box cursor (Bug#7479).
 
index b6ee93bdf6ba6d54ee8025b826ea64a72005d63f..973f2c15e2f4b61db46819e9aee2b1d22d77c5cf 100644 (file)
@@ -1049,10 +1049,15 @@ update_frame_tool_bar (FRAME_PTR f)
         {
           idx = -1;
         }
+      helpObj = TOOLPROP (TOOL_BAR_ITEM_HELP);
+      if (NILP (helpObj))
+        helpObj = TOOLPROP (TOOL_BAR_ITEM_CAPTION);
+      helpText = NILP (helpObj) ? "" : (char *)SDATA (helpObj);
+
       /* Ignore invalid image specifications.  */
       if (!valid_image_p (image))
         {
-          NSLog (@"Invalid image for toolbar item");
+          /* Don't log anything, GNUS makes invalid images all the time.  */
           continue;
         }
 
@@ -1066,11 +1071,6 @@ update_frame_tool_bar (FRAME_PTR f)
           continue;
         }
 
-      helpObj = TOOLPROP (TOOL_BAR_ITEM_HELP);
-      if (NILP (helpObj))
-        helpObj = TOOLPROP (TOOL_BAR_ITEM_CAPTION);
-      helpText = NILP (helpObj) ? "" : (char *)SDATA (helpObj);
-
       [toolbar addDisplayItemWithImage: img->pixmap idx: i helpText: helpText
                                enabled: enabled_p];
 #undef TOOLPROP