From f1bf759c646501707def7a27bc2ca76c30947ba4 Mon Sep 17 00:00:00 2001 From: Albrecht Schlosser Date: Tue, 14 Oct 2014 09:53:01 +0000 Subject: [PATCH] Remove extraneous comma from enum, fix compiler warning. Thanks to Michael Baeuerle. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10376 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- FL/Enumerations.H | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FL/Enumerations.H b/FL/Enumerations.H index a7b585dc0..3a793c3c9 100644 --- a/FL/Enumerations.H +++ b/FL/Enumerations.H @@ -931,7 +931,7 @@ enum Fl_Cursor { FL_CURSOR_W = 36, /**< leftwards resize. */ FL_CURSOR_NW = 68, /**< upwards, left resize. */ - FL_CURSOR_NONE =255, /**< invisible. */ + FL_CURSOR_NONE =255 /**< invisible. */ }; /*@}*/ // group: Cursors