summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2023-11-19 19:46:36 +0100
committerAlbrecht Schlosser <albrechts.fltk@online.de>2023-11-19 19:46:36 +0100
commit8b352987f60f74b390030977ae3fffeb428f26f3 (patch)
tree6d10b0f6d89f013c0fa869421f43c1e1c0e46fa4
parent7e8994c4a295e8709d4940656248c231de62a8a6 (diff)
Fix compiler warning
"extended initializer lists only available with ‘-std=c++11’ ..."
-rw-r--r--test/grid_dialog.cxx2
1 files changed, 1 insertions, 1 deletions
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",