diff options
author | Federico Mena Quintero <federico@gnome.org> | 2012-11-24 10:41:11 -0600 |
---|---|---|
committer | Federico Mena Quintero <federico@gnome.org> | 2012-11-24 10:41:11 -0600 |
commit | e0b30d013e559f26b1a7b42c037b620c561625a5 (patch) | |
tree | d029a472358e8d4534f54a55cb1503d7feee124a /gtk/gtkplacessidebar.h | |
parent | fc6bfcddde940fb21aa423459f064a4c6ccfc1db (diff) | |
download | gtk+-e0b30d013e559f26b1a7b42c037b620c561625a5.tar.gz |
Turn gtk_places_sidebar_set_current_uri() into _set_current_location()
To be consistent with the ::location-selected signal, which emits a GFile, we now also use a GFile
instead of a string URI in the inbound API.
Signed-off-by: Federico Mena Quintero <federico@gnome.org>
Diffstat (limited to 'gtk/gtkplacessidebar.h')
-rw-r--r-- | gtk/gtkplacessidebar.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkplacessidebar.h b/gtk/gtkplacessidebar.h index 98bac73c7b..093357ca11 100644 --- a/gtk/gtkplacessidebar.h +++ b/gtk/gtkplacessidebar.h @@ -55,7 +55,7 @@ GtkWidget *gtk_places_sidebar_new (void); /* FIXME: add GObject properties for the following things */ -void gtk_places_sidebar_set_current_uri (GtkPlacesSidebar *sidebar, const char *uri); +void gtk_places_sidebar_set_current_location (GtkPlacesSidebar *sidebar, GFile *location); void gtk_places_sidebar_set_multiple_tabs_supported (GtkPlacesSidebar *sidebar, gboolean supported); |