summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2021-04-08 13:50:32 +0200
committerAlbrecht Schlosser <albrechts.fltk@online.de>2021-04-08 13:50:32 +0200
commit02dfdd590d55f9316c6d9eb6e0cf94325fd3fdab (patch)
treef5104847411b05b85625030f3d65d77b71632579 /test
parent22cb8a7fdb1dfd5cb9e8280ce858dc6803bcdd9d (diff)
Fix macOS bundle: set missing fields for test apps
- MACOSX_BUNDLE_BUNDLE_NAME: CFBundleName - MACOSX_BUNDLE_GUI_IDENTIFIER: CFBundleIdentifier test/demo.cxx: Remove confusing quotes from demo variable output.
Diffstat (limited to 'test')
-rw-r--r--test/demo.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/demo.cxx b/test/demo.cxx
index 14c86fccf..8e7982f26 100644
--- a/test/demo.cxx
+++ b/test/demo.cxx
@@ -1,7 +1,7 @@
//
// Main demo program for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2020 by Bill Spitzak and others.
+// Copyright 1998-2021 by Bill Spitzak and others.
//
// This library is free software. Distribution and use rights are outlined in
// the file "COPYING" which should have been included with this file. If this
@@ -139,7 +139,7 @@ const char *cmake_intdir = 0;
// debug output function
void debug_var(const char *varname, const char *value) {
- tty->printf("%-10s = '%s'\n", varname, value);
+ tty->printf("%-10s = %s\n", varname, value);
}
// Show or hide the tty window