Skip to content

window: Fix docstring formatting on 'set-focus' signal

This comment was added in 93bcca7f but missed a colon so it never actually generated documentation and the nullable annotation never made it into GObject-introspection language bindings.

This crude regex does not catch any other instances of this mistake. The @ symbol is used to disambiguate signal doc comments from property doc comments, since property docs usually don't have parameters.

$ pcre2grep -rM '\\* [A-Z][A-Za-z]*:([a-z\-]*):\n +\* @' gtk/

Merge request reports