From 2ee50d030178cede83eb9d0005fbc19f819d30fe Mon Sep 17 00:00:00 2001 From: Graham Inggs Date: Mon, 5 Feb 2018 14:48:51 +0200 Subject: Imported Upstream version 2.1.0 --- ColumnsPanel.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ColumnsPanel.c') diff --git a/ColumnsPanel.c b/ColumnsPanel.c index 3ec9ee8..8974ffd 100644 --- a/ColumnsPanel.c +++ b/ColumnsPanel.c @@ -29,7 +29,7 @@ typedef struct ColumnsPanel_ { }*/ -static const char* ColumnsFunctions[] = {" ", " ", " ", " ", " ", " ", "MoveUp", "MoveDn", "Remove", "Done ", NULL}; +static const char* const ColumnsFunctions[] = {" ", " ", " ", " ", " ", " ", "MoveUp", "MoveDn", "Remove", "Done ", NULL}; static void ColumnsPanel_delete(Object* object) { Panel* super = (Panel*) object; @@ -65,8 +65,8 @@ static HandlerResult ColumnsPanel_eventHandler(Panel* super, int ch) { if (!this->moving) { break; } - /* else fallthrough */ } + /* else fallthrough */ case KEY_F(7): case '[': case '-': @@ -81,8 +81,8 @@ static HandlerResult ColumnsPanel_eventHandler(Panel* super, int ch) { if (!this->moving) { break; } - /* else fallthrough */ } + /* else fallthrough */ case KEY_F(8): case ']': case '+': -- cgit v1.2.3