* dialog.h: Removed a comma at the end of an enumeration, because

ANSI does not permit it.
This commit is contained in:
Roland Illig 2005-04-07 07:39:09 +00:00
parent e64958776a
commit 5185abce21
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2005-04-07 Roland Illig <roland.illig@gmx.de>
* dialog.h: Removed a comma at the end of an enumeration, because
ANSI does not permit it.
2005-04-06 Roland Illig <roland.illig@gmx.de>
* x11conn.c (x_io_error_handler): Close the X11 connection when

View File

@ -45,7 +45,7 @@ typedef enum {
WIDGET_DESTROY, /* Sent to widget at destruction time */
WIDGET_CURSOR, /* Sent to widget to position the cursor */
WIDGET_IDLE, /* Sent to widgets with options & W_WANT_IDLE*/
WIDGET_RESIZED, /* Sent after a widget has been resized */
WIDGET_RESIZED /* Sent after a widget has been resized */
} widget_msg_t;
typedef enum {