blueprint-compiler/tests/samples/signal_template_object.blp
James Westman 2e42dc6848
decompiler: Fix bug in signals with template object
If a signal handler had the template as its object, the decompiler would
output the class name instead of the 'template' keyword.
2025-05-03 07:46:34 -05:00

7 lines
101 B
Text

using Gtk 4.0;
template $MyTemplate {
Button {
clicked => $my_signal_handler(template);
}
}