diff options
author | Cosimo Cecchi <cosimoc@gnome.org> | 2012-10-22 12:43:01 -0400 |
---|---|---|
committer | Cosimo Cecchi <cosimoc@gnome.org> | 2012-10-22 12:43:01 -0400 |
commit | d09413bcff9b62af6ea58d003ffe2b76c792a57f (patch) | |
tree | 401597383325a3fb3aed38d61cffda022026e499 /src/nautilus-location-entry.h | |
parent | fe1965f2cafc4616caaea0ae048bf1ff5c8975f5 (diff) | |
download | nautilus-d09413bcff9b62af6ea58d003ffe2b76c792a57f.tar.gz |
location-entry: use GFile instead of an uri for last_location
We will create a GFile internally and most of the times we have a GFile
already, so change NautilusLocationEntry to just use a GFile too.
Diffstat (limited to 'src/nautilus-location-entry.h')
-rw-r--r-- | src/nautilus-location-entry.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nautilus-location-entry.h b/src/nautilus-location-entry.h index 31e4c29b0..21e30e9d1 100644 --- a/src/nautilus-location-entry.h +++ b/src/nautilus-location-entry.h @@ -66,8 +66,8 @@ void nautilus_location_entry_set_special_text (NautilusLocationEntry * const char *special_text); void nautilus_location_entry_set_secondary_action (NautilusLocationEntry *entry, NautilusLocationEntryAction secondary_action); -void nautilus_location_entry_set_uri (NautilusLocationEntry *entry, - const char *location); +void nautilus_location_entry_set_location (NautilusLocationEntry *entry, + GFile *location); void nautilus_location_entry_focus (NautilusLocationEntry *entry); #endif /* NAUTILUS_LOCATION_ENTRY_H */ |