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 /plugins/templates | |
parent | e1b2b34b20b5ca3dc3cdd3bd02510735f3657db7 (diff) | |
download | gsoc2013-evolution-dc7efb1311d23c32a76a9a8092f734223ce3207e.tar gsoc2013-evolution-dc7efb1311d23c32a76a9a8092f734223ce3207e.tar.gz gsoc2013-evolution-dc7efb1311d23c32a76a9a8092f734223ce3207e.tar.bz2 gsoc2013-evolution-dc7efb1311d23c32a76a9a8092f734223ce3207e.tar.lz gsoc2013-evolution-dc7efb1311d23c32a76a9a8092f734223ce3207e.tar.xz gsoc2013-evolution-dc7efb1311d23c32a76a9a8092f734223ce3207e.tar.zst gsoc2013-evolution-dc7efb1311d23c32a76a9a8092f734223ce3207e.zip |
Use consistent variable names for GtkUIManager
Diffstat (limited to 'plugins/templates')
-rw-r--r-- | plugins/templates/templates.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/templates/templates.c b/plugins/templates/templates.c index 8996c7f8c1..eae87721c4 100644 --- a/plugins/templates/templates.c +++ b/plugins/templates/templates.c @@ -88,7 +88,7 @@ void org_gnome_templates_popup (EPlugin *ep, EMPopupTargetSelect *t); GtkWidget *e_plugin_lib_get_configure_widget (EPlugin *epl); -gboolean e_plugin_ui_init (GtkUIManager *manager, EMsgComposer *composer); +gboolean e_plugin_ui_init (GtkUIManager *ui_manager, EMsgComposer *composer); /* Thanks to attachment reminder plugin for this*/ @@ -715,7 +715,7 @@ static GtkActionEntry entries[] = { }; gboolean -e_plugin_ui_init (GtkUIManager *manager, +e_plugin_ui_init (GtkUIManager *ui_manager, EMsgComposer *composer) { GtkhtmlEditor *editor; |