diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-04-25 22:49:45 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-04-25 22:49:45 +0800 |
commit | dc7efb1311d23c32a76a9a8092f734223ce3207e (patch) | |
tree | d6fb1ed2382b8958b63105d99377fc63b103e1b8 /widgets/misc/e-signature-editor.c | |
parent | e1b2b34b20b5ca3dc3cdd3bd02510735f3657db7 (diff) | |
download | gsoc2013-evolution-dc7efb1311d23c32a76a9a8092f734223ce3207e.tar.gz gsoc2013-evolution-dc7efb1311d23c32a76a9a8092f734223ce3207e.tar.zst gsoc2013-evolution-dc7efb1311d23c32a76a9a8092f734223ce3207e.zip |
Use consistent variable names for GtkUIManager
Diffstat (limited to 'widgets/misc/e-signature-editor.c')
-rw-r--r-- | widgets/misc/e-signature-editor.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/widgets/misc/e-signature-editor.c b/widgets/misc/e-signature-editor.c index c7dcbdaad9..cc1e9f6c18 100644 --- a/widgets/misc/e-signature-editor.c +++ b/widgets/misc/e-signature-editor.c @@ -329,7 +329,7 @@ static void signature_editor_init (ESignatureEditor *editor) { GtkActionGroup *action_group; - GtkUIManager *manager; + GtkUIManager *ui_manager; GtkWidget *container; GtkWidget *widget; GtkWidget *vbox; @@ -338,9 +338,9 @@ signature_editor_init (ESignatureEditor *editor) editor->priv = E_SIGNATURE_EDITOR_GET_PRIVATE (editor); vbox = GTKHTML_EDITOR (editor)->vbox; - manager = gtkhtml_editor_get_ui_manager (GTKHTML_EDITOR (editor)); + ui_manager = gtkhtml_editor_get_ui_manager (GTKHTML_EDITOR (editor)); - gtk_ui_manager_add_ui_from_string (manager, ui, -1, &error); + gtk_ui_manager_add_ui_from_string (ui_manager, ui, -1, &error); handle_error (&error); action_group = gtk_action_group_new ("signature"); @@ -349,10 +349,10 @@ signature_editor_init (ESignatureEditor *editor) gtk_action_group_add_actions ( action_group, entries, G_N_ELEMENTS (entries), editor); - gtk_ui_manager_insert_action_group (manager, action_group, 0); + gtk_ui_manager_insert_action_group (ui_manager, action_group, 0); editor->priv->action_group = g_object_ref (action_group); - gtk_ui_manager_ensure_update (manager); + gtk_ui_manager_ensure_update (ui_manager); gtk_window_set_title (GTK_WINDOW (editor), _("Edit Signature")); |