Compare commits

..

1 Commits

Author SHA1 Message Date
Kolan Sh e73cf2d921 Small fixes (upgrade Vala) 2020-04-29 09:30:44 +03:00
4 changed files with 4 additions and 4 deletions

View File

@ -31,6 +31,6 @@ public class TypeA1 : PluginTypeA {
} }
[ModuleInit] [ModuleInit]
Type plugin_init (GLib.TypeModule type_module) { public Type plugin_init (GLib.TypeModule type_module) {
return typeof (TypeA1); return typeof (TypeA1);
} }

View File

@ -28,6 +28,6 @@ public class TypeA2 : PluginTypeA {
} }
[ModuleInit] [ModuleInit]
Type plugin_init (GLib.TypeModule type_module) { public Type plugin_init (GLib.TypeModule type_module) {
return typeof (TypeA2); return typeof (TypeA2);
} }

View File

@ -29,6 +29,6 @@ public class TypeB1 : PluginTypeB {
} }
[ModuleInit] [ModuleInit]
Type plugin_init (GLib.TypeModule type_module) { public Type plugin_init (GLib.TypeModule type_module) {
return typeof (TypeB1); return typeof (TypeB1);
} }

View File

@ -29,6 +29,6 @@ public class TypeB2 : PluginTypeB {
} }
[ModuleInit] [ModuleInit]
Type plugin_init (GLib.TypeModule type_module) { public Type plugin_init (GLib.TypeModule type_module) {
return typeof (TypeB2); return typeof (TypeB2);
} }