2003-02-08 Radek Doulik <rodo@ximian.com>

* gconf/GConf/Client.cs: added SyggestSync method

svn path=/trunk/gtk-sharp/; revision=11341
This commit is contained in:
Radek Doulik 2003-02-08 10:11:56 +00:00
parent 06d51b2248
commit 2270b314f8
2 changed files with 15 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2003-02-08 Radek Doulik <rodo@ximian.com>
* gconf/GConf/Client.cs: added SyggestSync method
2003-02-07 Peter Williams <peterw@ximian.com>
* glue/Makefile.am (libgtksharpglue_la_LIBADD): Set this so

View File

@ -94,6 +94,17 @@ namespace GConf
gconf_client_notify_remove (Raw, cnxn);
callbacks.Remove (notify);
}
[DllImport("gconf-2")]
static extern void gconf_client_suggest_sync (IntPtr client, out IntPtr err);
public void SuggestSync ()
{
IntPtr err;
gconf_client_suggest_sync (Raw, out err);
if (err != IntPtr.Zero)
throw new GLib.GException (err);
}
}
}