summaryrefslogtreecommitdiff
path: root/gladeui/glade-widget.c
diff options
context:
space:
mode:
authorJuan Pablo Ugarte <juanpablougarte@gmail.com>2013-12-17 15:27:27 -0300
committerJuan Pablo Ugarte <juanpablougarte@gmail.com>2013-12-17 23:52:13 -0300
commit1d112a37a46ea12e02da5ca99d6c91b0a7aa947f (patch)
tree150f9450f68940cfeb5918c9419cdd4e9f696b7b /gladeui/glade-widget.c
parentdec1d5f838f9732d765939fb54b3b1e50f58fdbc (diff)
downloadglade-1d112a37a46ea12e02da5ca99d6c91b0a7aa947f.tar.gz
GladeWidget: deprecated glade_widget_depends()
GladeWidgetAdaptor: deprecated glade_widget_adaptor_depends()
Diffstat (limited to 'gladeui/glade-widget.c')
-rw-r--r--gladeui/glade-widget.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/gladeui/glade-widget.c b/gladeui/glade-widget.c
index df3a965f..bd140434 100644
--- a/gladeui/glade-widget.c
+++ b/gladeui/glade-widget.c
@@ -4365,15 +4365,14 @@ glade_widget_is_ancestor (GladeWidget * widget, GladeWidget * ancestor)
* It does not take into account for children dependencies.
*
* Return value: %TRUE if @widget depends on @other.
+ *
+ * Deprecated: 3.18
**/
gboolean
glade_widget_depends (GladeWidget *widget,
GladeWidget *other)
{
- g_return_val_if_fail (GLADE_IS_WIDGET (widget), FALSE);
- g_return_val_if_fail (GLADE_IS_WIDGET (other), FALSE);
-
- return glade_widget_adaptor_depends (widget->priv->adaptor, widget, other);
+ return FALSE;
}
/**