diff --git a/ChangeLog b/ChangeLog index 2a80d3376..4299de593 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-03-04 Alexander Larsson + + * glib/gurifuncs.c: + Remove deprecated symbols we kept for one release. + 2008-03-03 Matthias Clasen * glib/gutils.h: Add a version of G_INLINE_FUNC for diff --git a/gio/ChangeLog b/gio/ChangeLog index 561b916f8..9752ad335 100644 --- a/gio/ChangeLog +++ b/gio/ChangeLog @@ -1,3 +1,8 @@ +2008-03-04 Alexander Larsson + + * gfile.c: + Remove deprecated symbols we kept for one release. + 2008-03-04 Murray Cumming * ginputstream.c: diff --git a/gio/gfile.c b/gio/gfile.c index bef1037ea..ddc0ce4ff 100644 --- a/gio/gfile.c +++ b/gio/gfile.c @@ -669,16 +669,6 @@ g_file_get_child_for_display_name (GFile *file, return (* iface->get_child_for_display_name) (file, display_name, error); } -/* Temporary keep this symbol for one release */ -gboolean g_file_contains_file (GFile *parent, GFile *descendant); -gboolean -g_file_contains_file (GFile *parent, - GFile *descendant) -{ - /* This function is not in the header and will not be referenced by newly built code */ - return g_file_has_prefix (descendant, parent); -} - /** * g_file_has_prefix: * @file: input #GFile. diff --git a/glib/gurifuncs.c b/glib/gurifuncs.c index 049868550..1a9303cd6 100644 --- a/glib/gurifuncs.c +++ b/glib/gurifuncs.c @@ -204,15 +204,6 @@ g_uri_parse_scheme (const char *uri) return g_strndup (uri, p - uri - 1); } -/* Temporary add a symbol to avoid crashing to many apps. - Remove after 2.15.6 release */ -char * g_uri_get_scheme (const char *uri); -char *g_uri_get_scheme (const char *uri) -{ - return g_uri_parse_scheme (uri); -} - - /** * g_uri_escape_string: * @unescaped: the unescaped input string.