summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMatthias Melcher <github@matthiasm.com>2025-11-29 21:01:48 +0100
committerMatthias Melcher <github@matthiasm.com>2025-11-29 21:01:53 +0100
commit70527b3bf0289add9cb4c3f8456368f946a5e386 (patch)
tree979a5cc55fc890170d09d8d6d408267ff72a998f /test
parent6aa95584e092fc5ab554e408b061a30d4b3811e3 (diff)
Improve access to C++ symbols.
For events, fonts, and callback reasons
Diffstat (limited to 'test')
-rw-r--r--test/penpal.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/penpal.cxx b/test/penpal.cxx
index 69d6e280d..9b5ddde16 100644
--- a/test/penpal.cxx
+++ b/test/penpal.cxx
@@ -219,6 +219,7 @@ public:
: Fl_Widget(x, y, w, h, l), CanvasInterface(this) { }
~CanvasWidget() override { }
int handle(int event) override {
+ // puts(fl_eventname_str(event).c_str());
auto ret = cv_handle(event);
return ret ? ret : Fl_Widget::handle(event);
}