From 8b352987f60f74b390030977ae3fffeb428f26f3 Mon Sep 17 00:00:00 2001 From: Albrecht Schlosser Date: Sun, 19 Nov 2023 19:46:36 +0100 Subject: Fix compiler warning MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit "extended initializer lists only available with ‘-std=c++11’ ..." --- test/grid_dialog.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/grid_dialog.cxx b/test/grid_dialog.cxx index 305a3c0ba..72ffe66b4 100644 --- a/test/grid_dialog.cxx +++ b/test/grid_dialog.cxx @@ -54,7 +54,7 @@ static const int GAP = 8; static const char *labels[5] = { "Quit", "Copy", "Cancel", "OK", "More ..." }; -static const char *tooltips[5] { +static const char *tooltips[5] = { "Quit this program", "Copy the message text to the clipboard", "Cancel - does nothing", -- cgit v1.2.3