[gnome-disk-utility/udisks2-port] Catch up with latest udisks API
- From: David Zeuthen <davidz src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-disk-utility/udisks2-port] Catch up with latest udisks API
- Date: Fri, 18 Mar 2011 19:23:57 +0000 (UTC)
commit 9a8e2fe502d961dd6aff5b9e8b518d95637082a5
Author: David Zeuthen <davidz redhat com>
Date: Fri Mar 18 15:23:23 2011 -0400
Catch up with latest udisks API
Signed-off-by: David Zeuthen <davidz redhat com>
src/palimpsest/gduwindow.c | 20 ++++++++++----------
1 files changed, 10 insertions(+), 10 deletions(-)
---
diff --git a/src/palimpsest/gduwindow.c b/src/palimpsest/gduwindow.c
index 2849ad3..a7e15aa 100644
--- a/src/palimpsest/gduwindow.c
+++ b/src/palimpsest/gduwindow.c
@@ -1194,12 +1194,12 @@ change_filesystem_label_cb (UDisksBlockDevice *block,
GError *error;
error = NULL;
- if (!udisks_block_device_call_filesystem_set_label_finish (block,
- res,
- &error))
+ if (!udisks_block_device_call_set_label_finish (block,
+ res,
+ &error))
{
gdu_window_show_error (window,
- _("Error setting filesystem label"),
+ _("Error setting label"),
error);
g_error_free (error);
}
@@ -1248,12 +1248,12 @@ on_change_filesystem_label (GduWindow *window)
label_to_set = gtk_entry_get_text (GTK_ENTRY (entry));
- udisks_block_device_call_filesystem_set_label (block,
- label_to_set,
- options, /* options */
- NULL, /* cancellable */
- (GAsyncReadyCallback) change_filesystem_label_cb,
- g_object_ref (window));
+ udisks_block_device_call_set_label (block,
+ label_to_set,
+ options, /* options */
+ NULL, /* cancellable */
+ (GAsyncReadyCallback) change_filesystem_label_cb,
+ g_object_ref (window));
out:
g_signal_handlers_disconnect_by_func (entry,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]