diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2007-11-15 06:04:21 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2007-11-15 06:04:21 +0800 |
commit | 9e4fcb29cf7f05c18f7fd34e318f9e795fa32e91 (patch) | |
tree | 2e1e96f33404781354c422a7e9beaf458ebeb655 /plugins/plugin-manager | |
parent | 7e8f8bb9e5167b0219b48ab3e8062080d3740b0a (diff) | |
download | gsoc2013-evolution-9e4fcb29cf7f05c18f7fd34e318f9e795fa32e91.tar gsoc2013-evolution-9e4fcb29cf7f05c18f7fd34e318f9e795fa32e91.tar.gz gsoc2013-evolution-9e4fcb29cf7f05c18f7fd34e318f9e795fa32e91.tar.bz2 gsoc2013-evolution-9e4fcb29cf7f05c18f7fd34e318f9e795fa32e91.tar.lz gsoc2013-evolution-9e4fcb29cf7f05c18f7fd34e318f9e795fa32e91.tar.xz gsoc2013-evolution-9e4fcb29cf7f05c18f7fd34e318f9e795fa32e91.tar.zst gsoc2013-evolution-9e4fcb29cf7f05c18f7fd34e318f9e795fa32e91.zip |
** Remove trailing whitespace from source code.
2007-11-14 Matthew Barnes <mbarnes@redhat.com>
** Remove trailing whitespace from source code.
svn path=/trunk/; revision=34537
Diffstat (limited to 'plugins/plugin-manager')
-rw-r--r-- | plugins/plugin-manager/plugin-manager.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/plugin-manager/plugin-manager.c b/plugins/plugin-manager/plugin-manager.c index 86b94c290d..4352254bf7 100644 --- a/plugins/plugin-manager/plugin-manager.c +++ b/plugins/plugin-manager/plugin-manager.c @@ -91,7 +91,7 @@ eppm_show_plugin(Manager *m, EPlugin *ep) string = g_strdup_printf("<span size=\"x-large\">%s</span>", ep->name); gtk_label_set_markup(GTK_LABEL(m->items[LABEL_NAME]), string); g_free(string); - + if (ep->authors) { GSList *l = ep->authors; GString *out = g_string_new(""); @@ -154,7 +154,7 @@ eppm_enable_toggled(GtkCellRendererToggle *renderer, const char *path_string, Ma EPlugin *plugin; path = gtk_tree_path_new_from_string(path_string); - + if (gtk_tree_model_get_iter(m->model, &iter, path)) { gtk_tree_model_get(m->model, &iter, COL_PLUGIN_DATA, &plugin, -1); e_plugin_enable(plugin, !plugin->enabled); @@ -165,7 +165,7 @@ eppm_enable_toggled(GtkCellRendererToggle *renderer, const char *path_string, Ma COL_PLUGIN_ENABLED, plugin->enabled, -1); } - + gtk_tree_path_free(path); } @@ -231,8 +231,8 @@ org_gnome_plugin_manager_manage(void *ep, ESMenuTargetShell *t) m->dialog = (GtkDialog *)gtk_dialog_new_with_buttons(_("Plugin Manager"), (GtkWindow *)gtk_widget_get_toplevel(t->target.widget), GTK_DIALOG_DESTROY_WITH_PARENT, - _("Con_figure"), RESPONSE_CONFIGURE, - GTK_STOCK_CLOSE, GTK_RESPONSE_CLOSE, + _("Con_figure"), RESPONSE_CONFIGURE, + GTK_STOCK_CLOSE, GTK_RESPONSE_CLOSE, NULL); gtk_window_set_default_size((GtkWindow *)m->dialog, 640, 400); @@ -377,7 +377,7 @@ e_plugin_lib_enable(EPluginLib *ep, int enable) return 0; } -int +int e_plugin_lib_configure(EPluginLib *ep) { d(printf ("\n\a e_plugin_lib_configure in plugin-manager\n\a")); |