Fix NativeInstantiation sample/test

* sample/NativeInstantiationTest.cs: pinvoke the correct soname.
This commit is contained in:
Mike Kestner 2011-02-15 10:27:54 -06:00
parent 27b71b1982
commit 5e6bd92b73

View file

@ -13,7 +13,7 @@ namespace GtkSharp {
[DllImport ("libgobject-2.0.so.0")]
static extern IntPtr g_object_new (IntPtr gtype, string prop, string val, IntPtr dummy);
[DllImport ("libgtk-3.0.so.0")]
[DllImport ("libgtk-3.so.0")]
static extern void gtk_widget_show (IntPtr handle);
public static int Main (string[] args)