diff options
author | Jan Djärv <jan.h.d@swipnet.se> | 2010-04-21 18:13:55 +0200 |
---|---|---|
committer | Jan Djärv <jan.h.d@swipnet.se> | 2010-04-21 18:13:55 +0200 |
commit | c632dfda11b0ad6a144704dc473e4ff6bbac0990 (patch) | |
tree | 6065155419ae993b72a32027a0ef3d15fc376270 /lwlib/lwlib-Xaw.c | |
parent | c5cbeb128e3d3fc20d6e481308f154526c96e6cf (diff) | |
download | emacs-c632dfda11b0ad6a144704dc473e4ff6bbac0990.tar.gz emacs-c632dfda11b0ad6a144704dc473e4ff6bbac0990.tar.bz2 emacs-c632dfda11b0ad6a144704dc473e4ff6bbac0990.zip |
Declarations before code (Bug#5993).
* data.c (make_blv): Declarations before code (Bug#5993).
* xlwmenu.c (expose_cb):
* lwlib-Xaw.c (fill_xft_data): Declarations before code (Bug#5993).
Diffstat (limited to 'lwlib/lwlib-Xaw.c')
-rw-r--r-- | lwlib/lwlib-Xaw.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lwlib/lwlib-Xaw.c b/lwlib/lwlib-Xaw.c index c6bbae7e3c9..d31b4602147 100644 --- a/lwlib/lwlib-Xaw.c +++ b/lwlib/lwlib-Xaw.c @@ -150,12 +150,12 @@ xaw_update_scrollbar (instance, widget, val) static void fill_xft_data (struct widget_xft_data *data, Widget widget, XftFont *font) { - data->widget = widget; - data->xft_font = font; Pixel bg, fg; XColor colors[2]; int screen = XScreenNumberOfScreen (XtScreen (widget)); + data->widget = widget; + data->xft_font = font; XtVaGetValues (widget, XtNbackground, &bg, XtNforeground, &fg, |