+2013-06-30 Paul Eggert <eggert@cs.ucla.edu>
+
+ Fix minor problems found by static checking.
+ * lwlib-Xaw.h (xaw_update_one_value, xaw_popup_menu):
+ * lwlib-Xlw.h (xlw_update_one_value, xlw_pop_instance):
+ * lwlib.h (lw_allow_resizing, lw_set_main_areas) [!USE_MOTIF]:
+ Now const.
+
2012-10-06 Ulrich Müller <ulm@gentoo.org>
* Makefile.in (AR, ARFLAGS): Get values from configure.
xaw_update_one_widget (widget_instance *, Widget, widget_value *, Boolean);
void
-xaw_update_one_value (widget_instance *, Widget, widget_value *);
+xaw_update_one_value (widget_instance *, Widget, widget_value *)
+ ATTRIBUTE_CONST;
void
xaw_destroy_instance (widget_instance *);
void
-xaw_popup_menu (Widget, XEvent *);
+xaw_popup_menu (Widget, XEvent *)
+ ATTRIBUTE_CONST;
void
xaw_pop_instance (widget_instance *, Boolean);
#endif /* LWLIB_XAW_H */
-
void
xlw_update_one_value (widget_instance* instance, Widget widget,
- widget_value* val);
+ widget_value* val)
+ ATTRIBUTE_CONST;
void
xlw_destroy_instance (widget_instance* instance);
void
-xlw_pop_instance (widget_instance* instance, Boolean up);
+xlw_pop_instance (widget_instance* instance, Boolean up)
+ ATTRIBUTE_CONST;
void
xlw_popup_menu (Widget widget, XEvent * event);
#endif /* LWLIB_XLW_H */
-
Boolean lw_window_is_in_menubar (Window win, Widget menubar_widget);
/* Manage resizing: TRUE permits resizing widget w; FALSE disallows it. */
+#ifndef USE_MOTIF
+ATTRIBUTE_CONST
+#endif
void lw_allow_resizing (Widget w, Boolean flag);
/* Set up the main window. */
+#ifndef USE_MOTIF
+ATTRIBUTE_CONST
+#endif
void lw_set_main_areas (Widget parent,
Widget menubar,
Widget work_area);
2013-06-30 Paul Eggert <eggert@cs.ucla.edu>
+ * widget.c (resize_cb): Remove unused local.
+
Do not use GTK 3 if it exists but cannot be compiled.
* xmenu.c (x_menu_wait_for_event) [!USE_GTK]:
* xterm.c (x_error_handler) [!USE_GTK]:
XEvent* event,
Boolean* continue_to_dispatch)
{
- EmacsFrame ew = (EmacsFrame) widget;
EmacsFrameResize (widget);
}