Skip to content

Commit

Permalink
Update codegen/valagasyncmodule.vala
Browse files Browse the repository at this point in the history
Co-authored-by: Ole André Vadla Ravnås <oleavr@gmail.com>
  • Loading branch information
hsorbo and oleavr authored Sep 12, 2024
1 parent 1203c4a commit d70c8ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion codegen/valagasyncmodule.vala
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ public class Vala.GAsyncModule : GtkModule {
Vala.Symbol? symbol = m.parent_symbol;
while (symbol != null) {
if (symbol.name != null) {
full_method_name.prepend ("%s.".printf (symbol.name));
full_method_name.prepend (symbol.name + ".");
}
symbol = symbol.parent_symbol;
}
Expand Down

0 comments on commit d70c8ad

Please sign in to comment.