Author: kelnos
Date: 2008-11-06 10:22:28 +0000 (Thu, 06 Nov 2008)
New Revision: 28627

Modified:
   xfconf/trunk/NEWS
   xfconf/trunk/docs/reference/tmpl/xfconf-channel.sgml
   xfconf/trunk/docs/reference/tmpl/xfconf-unused.sgml
   xfconf/trunk/docs/reference/xfconf-sections.txt
   xfconf/trunk/xfconf/xfconf-channel.c
   xfconf/trunk/xfconf/xfconf-channel.h
   xfconf/trunk/xfconf/xfconf.symbols
Log:
remove xfconf_channel_remove_property() and _properties().  might as
well get rid of them since i already bumped the lib version

Modified: xfconf/trunk/NEWS
===================================================================
--- xfconf/trunk/NEWS   2008-11-06 09:57:55 UTC (rev 28626)
+++ xfconf/trunk/NEWS   2008-11-06 10:22:28 UTC (rev 28627)
@@ -9,7 +9,10 @@
   * Change libxfconf GObject bindings API slightly to use gulong IDs
     for each binding to be used when removing bindings.  Extend the
     unbind functions a bit.
+  * Bump libxfconf interface version due to incompatible change.
   * Add libxfconf perl bindings.
+  * Remove xfconf_channel_remove_property() and
+    xfconf_channel_remove_properties().
 
 
 Xfce 4.6beta1 (Xfce 4.5.91)

Modified: xfconf/trunk/docs/reference/tmpl/xfconf-channel.sgml
===================================================================
--- xfconf/trunk/docs/reference/tmpl/xfconf-channel.sgml        2008-11-06 
09:57:55 UTC (rev 28626)
+++ xfconf/trunk/docs/reference/tmpl/xfconf-channel.sgml        2008-11-06 
10:22:28 UTC (rev 28627)
@@ -103,24 +103,6 @@
 @recursive: 
 
 
-<!-- ##### FUNCTION xfconf_channel_remove_property ##### -->
-<para>
-
-</para>
-
[EMAIL PROTECTED]: 
[EMAIL PROTECTED]: 
-
-
-<!-- ##### FUNCTION xfconf_channel_remove_properties ##### -->
-<para>
-
-</para>
-
[EMAIL PROTECTED]: 
[EMAIL PROTECTED]: 
-
-
 <!-- ##### FUNCTION xfconf_channel_get_properties ##### -->
 <para>
 

Modified: xfconf/trunk/docs/reference/tmpl/xfconf-unused.sgml
===================================================================
--- xfconf/trunk/docs/reference/tmpl/xfconf-unused.sgml 2008-11-06 09:57:55 UTC 
(rev 28626)
+++ xfconf/trunk/docs/reference/tmpl/xfconf-unused.sgml 2008-11-06 10:22:28 UTC 
(rev 28627)
@@ -129,6 +129,22 @@
 @default_value: 
 @Returns: 
 
+<!-- ##### FUNCTION xfconf_channel_remove_properties ##### -->
+<para>
+
+</para>
+
[EMAIL PROTECTED]: 
[EMAIL PROTECTED]: 
+
+<!-- ##### FUNCTION xfconf_channel_remove_property ##### -->
+<para>
+
+</para>
+
[EMAIL PROTECTED]: 
[EMAIL PROTECTED]: 
+
 <!-- ##### FUNCTION xfconf_channel_set_int64 ##### -->
 <para>
 

Modified: xfconf/trunk/docs/reference/xfconf-sections.txt
===================================================================
--- xfconf/trunk/docs/reference/xfconf-sections.txt     2008-11-06 09:57:55 UTC 
(rev 28626)
+++ xfconf/trunk/docs/reference/xfconf-sections.txt     2008-11-06 10:22:28 UTC 
(rev 28627)
@@ -7,8 +7,6 @@
 xfconf_channel_has_property
 xfconf_channel_is_property_locked
 xfconf_channel_reset_property
-xfconf_channel_remove_property
-xfconf_channel_remove_properties
 xfconf_channel_get_properties
 xfconf_channel_get_string
 xfconf_channel_get_string_list

Modified: xfconf/trunk/xfconf/xfconf-channel.c
===================================================================
--- xfconf/trunk/xfconf/xfconf-channel.c        2008-11-06 09:57:55 UTC (rev 
28626)
+++ xfconf/trunk/xfconf/xfconf-channel.c        2008-11-06 10:22:28 UTC (rev 
28627)
@@ -702,40 +702,6 @@
 }
 
 /**
- * xfconf_channel_remove_property:
- * @channel: An #XfconfChannel.
- * @property: A property name.
- *
- * Removes @property from @channel in the configuration store.
- *
- * Deprecated:4.5.91: Use xfconf_channel_reset_property() instead.
- **/
-void
-xfconf_channel_remove_property(XfconfChannel *channel,
-                               const gchar *property)
-{
-    xfconf_channel_reset_property(channel, property, FALSE);
-}
-
-/**
- * xfconf_channel_remove_properties:
- * @channel: An #XfconfChannel.
- * @property_base: The base property name of properties to remove.
- *
- * Removes @property_base from @channel, and removes all
- * sub-properties of @property_base as well.  To remove the
- * entire channel, specify "/" or %NULL for @property_base.
- *
- * Deprecated:4.5.91: Use xfconf_channel_reset_property() instead.
- **/
-void
-xfconf_channel_remove_properties(XfconfChannel *channel,
-                                 const gchar *property_base)
-{
-    xfconf_channel_reset_property(channel, property_base, TRUE);
-}
-
-/**
  * xfconf_channel_get_properties:
  * @channel: An #XfconfChannel.
  * @property_base: The base property name of properties to retrieve.

Modified: xfconf/trunk/xfconf/xfconf-channel.h
===================================================================
--- xfconf/trunk/xfconf/xfconf-channel.h        2008-11-06 09:57:55 UTC (rev 
28626)
+++ xfconf/trunk/xfconf/xfconf-channel.h        2008-11-06 10:22:28 UTC (rev 
28627)
@@ -56,13 +56,6 @@
                                    const gchar *property_base,
                                    gboolean recursive);
 
-#ifndef XFCONF_DISABLE_DEPRECATED
-void xfconf_channel_remove_property(XfconfChannel *channel,
-                                    const gchar *property);
-void xfconf_channel_remove_properties(XfconfChannel *channel,
-                                      const gchar *property_base);
-#endif
-
 GHashTable *xfconf_channel_get_properties(XfconfChannel *channel,
                                           const gchar *property_base) 
G_GNUC_WARN_UNUSED_RESULT;
 

Modified: xfconf/trunk/xfconf/xfconf.symbols
===================================================================
--- xfconf/trunk/xfconf/xfconf.symbols  2008-11-06 09:57:55 UTC (rev 28626)
+++ xfconf/trunk/xfconf/xfconf.symbols  2008-11-06 10:22:28 UTC (rev 28627)
@@ -62,8 +62,6 @@
 xfconf_channel_has_property
 xfconf_channel_is_property_locked
 xfconf_channel_reset_property
-xfconf_channel_remove_property
-xfconf_channel_remove_properties
 xfconf_channel_get_properties
 xfconf_channel_get_string
 xfconf_channel_set_string

_______________________________________________
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits

Reply via email to