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:
parent
06d51b2248
commit
2270b314f8
2 changed files with 15 additions and 0 deletions
|
@ -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>
|
2003-02-07 Peter Williams <peterw@ximian.com>
|
||||||
|
|
||||||
* glue/Makefile.am (libgtksharpglue_la_LIBADD): Set this so
|
* glue/Makefile.am (libgtksharpglue_la_LIBADD): Set this so
|
||||||
|
|
|
@ -94,6 +94,17 @@ namespace GConf
|
||||||
gconf_client_notify_remove (Raw, cnxn);
|
gconf_client_notify_remove (Raw, cnxn);
|
||||||
callbacks.Remove (notify);
|
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);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue