aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2011-03-28 05:58:32 +0800
committerMatthew Barnes <mbarnes@redhat.com>2011-03-28 06:38:39 +0800
commit63c26d5712c807f65db9c1b0c98ca06aad76171a (patch)
treeec87dbb63434333bab6d98f73a9e266d4b56777a
parentba6a2343869f6be82f44261f183cd6925659d5ee (diff)
downloadgsoc2013-evolution-63c26d5712c807f65db9c1b0c98ca06aad76171a.tar
gsoc2013-evolution-63c26d5712c807f65db9c1b0c98ca06aad76171a.tar.gz
gsoc2013-evolution-63c26d5712c807f65db9c1b0c98ca06aad76171a.tar.bz2
gsoc2013-evolution-63c26d5712c807f65db9c1b0c98ca06aad76171a.tar.lz
gsoc2013-evolution-63c26d5712c807f65db9c1b0c98ca06aad76171a.tar.xz
gsoc2013-evolution-63c26d5712c807f65db9c1b0c98ca06aad76171a.tar.zst
gsoc2013-evolution-63c26d5712c807f65db9c1b0c98ca06aad76171a.zip
Miscellaneous GtkAction-related cleanups.
Prefer the newer GtkAction "set" functions over g_object_set().
-rw-r--r--mail/e-mail-reader.c36
-rw-r--r--modules/addressbook/e-book-shell-view.c4
-rw-r--r--modules/calendar/e-cal-shell-view-actions.c14
-rw-r--r--modules/calendar/e-memo-shell-view.c2
-rw-r--r--modules/calendar/e-task-shell-view.c2
-rw-r--r--modules/mail/e-mail-shell-backend.c5
-rw-r--r--modules/mail/e-mail-shell-view.c2
7 files changed, 33 insertions, 32 deletions
diff --git a/mail/e-mail-reader.c b/mail/e-mail-reader.c
index 9da57fba0f..c288db023e 100644
--- a/mail/e-mail-reader.c
+++ b/mail/e-mail-reader.c
@@ -3205,24 +3205,25 @@ mail_reader_update_actions (EMailReader *reader,
gtk_action_set_sensitive (action, sensitive);
action_name = "mail-goto-folder";
+ sensitive = e_mail_reader_get_enable_show_folder (reader);
action = e_mail_reader_get_action (reader, action_name);
- g_object_set (action, "visible", e_mail_reader_get_enable_show_folder (reader), NULL);
- gtk_action_set_sensitive (action, e_mail_reader_get_enable_show_folder (reader));
+ gtk_action_set_sensitive (action, sensitive);
+ gtk_action_set_visible (action, sensitive);
action_name = "mail-goto-nexttab";
action = e_mail_reader_get_action (reader, action_name);
- g_object_set (action, "visible", FALSE, NULL);
gtk_action_set_sensitive (action, TRUE);
+ gtk_action_set_visible (action, FALSE);
action_name = "mail-goto-prevtab";
action = e_mail_reader_get_action (reader, action_name);
- g_object_set (action, "visible", FALSE, NULL);
gtk_action_set_sensitive (action, TRUE);
+ gtk_action_set_visible (action, FALSE);
action_name = "mail-close-tab";
action = e_mail_reader_get_action (reader, action_name);
- g_object_set (action, "visible", FALSE, NULL);
gtk_action_set_sensitive (action, TRUE);
+ gtk_action_set_visible (action, FALSE);
action_name = "mail-move";
sensitive = any_messages_selected;
@@ -3607,54 +3608,53 @@ e_mail_reader_init (EMailReader *reader,
action_name = "mail-delete";
action = e_mail_reader_get_action (reader, action_name);
- g_object_set (action, "short-label", _("Delete"), NULL);
+ gtk_action_set_short_label (action, _("Delete"));
action_name = "mail-forward";
action = e_mail_reader_get_action (reader, action_name);
- g_object_set (action, "is-important", TRUE, NULL);
+ gtk_action_set_is_important (action, TRUE);
action_name = "mail-reply-group";
action = e_mail_reader_get_action (reader, action_name);
- g_object_set (action, "is-important", TRUE, NULL);
+ gtk_action_set_is_important (action, TRUE);
action_name = "mail-goto-folder";
action = e_mail_reader_get_action (reader, action_name);
sensitive = e_mail_reader_get_enable_show_folder (reader);
- g_object_set (action, "visible", FALSE, NULL);
gtk_action_set_sensitive (action, sensitive);
+ gtk_action_set_visible (action, FALSE);
action_name = "mail-goto-nexttab";
action = e_mail_reader_get_action (reader, action_name);
- g_object_set (action, "visible", FALSE, NULL);
gtk_action_set_sensitive (action, TRUE);
+ gtk_action_set_visible (action, FALSE);
action_name = "mail-goto-prevtab";
action = e_mail_reader_get_action (reader, action_name);
- g_object_set (action, "visible", FALSE, NULL);
gtk_action_set_sensitive (action, TRUE);
+ gtk_action_set_visible (action, FALSE);
action_name = "mail-close-tab";
action = e_mail_reader_get_action (reader, action_name);
- g_object_set (action, "visible", FALSE, NULL);
gtk_action_set_sensitive (action, TRUE);
+ gtk_action_set_visible (action, FALSE);
action_name = "mail-next";
action = e_mail_reader_get_action (reader, action_name);
- g_object_set (action, "short-label", _("Next"), NULL);
+ gtk_action_set_short_label (action, _("Next"));
action_name = "mail-previous";
action = e_mail_reader_get_action (reader, action_name);
- g_object_set (action, "short-label", _("Previous"), NULL);
+ gtk_action_set_short_label (action, _("Previous"));
action_name = "mail-reply-all";
action = e_mail_reader_get_action (reader, action_name);
- g_object_set (action, "is-important", TRUE, NULL);
+ gtk_action_set_is_important (action, TRUE);
action_name = "mail-reply-sender";
action = e_mail_reader_get_action (reader, action_name);
- g_object_set (
- action, "is-important", TRUE,
- "short-label", _("Reply"), NULL);
+ gtk_action_set_is_important (action, TRUE);
+ gtk_action_set_short_label (action, _("Reply"));
action_name = "add-to-address-book";
action = e_web_view_get_action (web_view, action_name);
diff --git a/modules/addressbook/e-book-shell-view.c b/modules/addressbook/e-book-shell-view.c
index 4f0d349ba6..3a325b0786 100644
--- a/modules/addressbook/e-book-shell-view.c
+++ b/modules/addressbook/e-book-shell-view.c
@@ -345,7 +345,7 @@ book_shell_view_update_actions (EShellView *shell_view)
label = _("_Forward Contacts");
else
label = _("_Forward Contact");
- g_object_set (action, "label", label, NULL);
+ gtk_action_set_label (action, label);
action = ACTION (CONTACT_MOVE);
sensitive = source_is_editable && any_contacts_selected;
@@ -380,7 +380,7 @@ book_shell_view_update_actions (EShellView *shell_view)
label = _("_Send Message to List");
else
label = _("_Send Message to Contact");
- g_object_set (action, "label", label, NULL);
+ gtk_action_set_label (action, label);
}
static void
diff --git a/modules/calendar/e-cal-shell-view-actions.c b/modules/calendar/e-cal-shell-view-actions.c
index ba72a41748..ceeab0b8c3 100644
--- a/modules/calendar/e-cal-shell-view-actions.c
+++ b/modules/calendar/e-cal-shell-view-actions.c
@@ -1808,25 +1808,25 @@ e_cal_shell_view_actions_init (ECalShellView *cal_shell_view)
/* Fine tuning. */
action = ACTION (CALENDAR_GO_TODAY);
- g_object_set (action, "short-label", _("Today"), NULL);
+ gtk_action_set_short_label (action, _("Today"));
action = ACTION (CALENDAR_JUMP_TO);
- g_object_set (action, "short-label", _("Go To"), NULL);
+ gtk_action_set_short_label (action, _("Go To"));
action = ACTION (CALENDAR_VIEW_DAY);
- g_object_set (action, "is-important", TRUE, NULL);
+ gtk_action_set_is_important (action, TRUE);
action = ACTION (CALENDAR_VIEW_LIST);
- g_object_set (action, "is-important", TRUE, NULL);
+ gtk_action_set_is_important (action, TRUE);
action = ACTION (CALENDAR_VIEW_MONTH);
- g_object_set (action, "is-important", TRUE, NULL);
+ gtk_action_set_is_important (action, TRUE);
action = ACTION (CALENDAR_VIEW_WEEK);
- g_object_set (action, "is-important", TRUE, NULL);
+ gtk_action_set_is_important (action, TRUE);
action = ACTION (CALENDAR_VIEW_WORKWEEK);
- g_object_set (action, "is-important", TRUE, NULL);
+ gtk_action_set_is_important (action, TRUE);
g_signal_connect (
ACTION (GAL_SAVE_CUSTOM_VIEW), "activate",
diff --git a/modules/calendar/e-memo-shell-view.c b/modules/calendar/e-memo-shell-view.c
index d0986e7a17..c6d620dd0d 100644
--- a/modules/calendar/e-memo-shell-view.c
+++ b/modules/calendar/e-memo-shell-view.c
@@ -223,7 +223,7 @@ memo_shell_view_update_actions (EShellView *shell_view)
label = _("Delete Memos");
else
label = _("Delete Memo");
- g_object_set (action, "label", label, NULL);
+ gtk_action_set_label (action, label);
action = ACTION (MEMO_FIND);
sensitive = single_memo_selected;
diff --git a/modules/calendar/e-task-shell-view.c b/modules/calendar/e-task-shell-view.c
index 76410b3184..fd4f762bc8 100644
--- a/modules/calendar/e-task-shell-view.c
+++ b/modules/calendar/e-task-shell-view.c
@@ -358,7 +358,7 @@ task_shell_view_update_actions (EShellView *shell_view)
label = _("Delete Tasks");
else
label = _("Delete Task");
- g_object_set (action, "label", label, NULL);
+ gtk_action_set_label (action, label);
action = ACTION (TASK_FIND);
sensitive = single_task_selected;
diff --git a/modules/mail/e-mail-shell-backend.c b/modules/mail/e-mail-shell-backend.c
index af4af565f7..1de34a97ed 100644
--- a/modules/mail/e-mail-shell-backend.c
+++ b/modules/mail/e-mail-shell-backend.c
@@ -78,7 +78,8 @@ mail_shell_backend_init_importers (void)
importer = mbox_importer_peek ();
e_import_class_add_importer (import_class, importer, NULL, NULL);
- mbox_importer_set_preview_funcs (mbox_create_preview_cb, mbox_fill_preview_cb);
+ mbox_importer_set_preview_funcs (
+ mbox_create_preview_cb, mbox_fill_preview_cb);
importer = elm_importer_peek ();
e_import_class_add_importer (import_class, importer, NULL, NULL);
@@ -95,7 +96,7 @@ mail_shell_backend_mail_icon_cb (EShellWindow *shell_window,
action = e_shell_window_get_shell_view_action (
shell_window, BACKEND_NAME);
- g_object_set (action, "icon-name", icon_name, NULL);
+ gtk_action_set_icon_name (action, icon_name);
}
static void
diff --git a/modules/mail/e-mail-shell-view.c b/modules/mail/e-mail-shell-view.c
index 0c7feba0cf..2a3e2550ae 100644
--- a/modules/mail/e-mail-shell-view.c
+++ b/modules/mail/e-mail-shell-view.c
@@ -952,7 +952,7 @@ mail_shell_view_update_actions (EShellView *shell_view)
else
label = _("_Disable Account");
gtk_action_set_sensitive (action, sensitive);
- g_object_set (action, "label", label, NULL);
+ gtk_action_set_label (action, label);
action = ACTION (MAIL_ACCOUNT_EXPUNGE);
sensitive = folder_is_trash;