Small fixes (upgrade Vala)

master
Kolan Sh 2020-04-29 08:50:21 +03:00
부모 097e41f370
커밋 e73cf2d921
5개의 변경된 파일7개의 추가작업 그리고 6개의 파일을 삭제

파일 보기

@ -34,7 +34,7 @@ namespace GObject {
* Loads the module.
*/
public override bool load () {
module = GLib.Module.open (path, GLib.ModuleFlags.BIND_LAZY);
module = GLib.Module.open (path, GLib.ModuleFlags.LAZY);
if (null == module) {
stderr.printf("Cannot load module %s\n", path);
return false;

파일 보기

@ -25,11 +25,12 @@ public class TypeA1 : PluginTypeA {
public override void method_a () {
stdout.puts ("TypeA1.method_a () called\n");
stdout.puts ("Call IHostLoaderTest.method_host () from TypeA1:\n ");
(host as IHostLoaderTest).method_host ();
var test = host as IHostLoaderTest;
if (test != null) test.method_host ();
}
}
[ModuleInit]
Type plugin_init (GLib.TypeModule type_module) {
public Type plugin_init (GLib.TypeModule type_module) {
return typeof (TypeA1);
}

파일 보기

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

파일 보기

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

파일 보기

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