summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2021-08-30 14:28:35 +0200
committerAlbrecht Schlosser <albrechts.fltk@online.de>2021-08-30 14:28:35 +0200
commit418699fceac327f8f443d1dbf9e9404e23ea0451 (patch)
tree9d256d7ff4d92a44d298096eb70c3c63880a44f9 /examples
parentdc13b569150359005a9bf343aef56eeda12094a1 (diff)
Fix two compiler warnings [-Wunused-variable]
Diffstat (limited to 'examples')
-rw-r--r--examples/fluid-callback.fl3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/fluid-callback.fl b/examples/fluid-callback.fl
index 42ce474c8..ac993fbc7 100644
--- a/examples/fluid-callback.fl
+++ b/examples/fluid-callback.fl
@@ -81,5 +81,6 @@ delete this;} {}
Function {} {open return_type int
} {
code {// Main program
-App *app = new App(300, 100, "Virtual Callback Test");} {}
+App(300, 100, "Virtual Callback Test");} {selected
+ }
}