diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-02-08 01:36:53 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-02-08 02:26:37 +0800 |
commit | 49ef32b76c55cbefba53568f02028dddf23a9bc9 (patch) | |
tree | 682e825cab580d4c401f0a138ee29a8534336591 /modules/plugin-mono | |
parent | 2ef43b4cf40d21c61d39c5a938e428afa9074e2b (diff) | |
download | gsoc2013-evolution-49ef32b76c55cbefba53568f02028dddf23a9bc9.tar.gz gsoc2013-evolution-49ef32b76c55cbefba53568f02028dddf23a9bc9.tar.zst gsoc2013-evolution-49ef32b76c55cbefba53568f02028dddf23a9bc9.zip |
Coding style and whitespace cleanup.
Diffstat (limited to 'modules/plugin-mono')
-rw-r--r-- | modules/plugin-mono/e-plugin-mono.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/modules/plugin-mono/e-plugin-mono.c b/modules/plugin-mono/e-plugin-mono.c index 1c43fb9d56..f1fe76ff49 100644 --- a/modules/plugin-mono/e-plugin-mono.c +++ b/modules/plugin-mono/e-plugin-mono.c @@ -121,7 +121,8 @@ plugin_mono_invoke (EPlugin *plugin, plugin_mono = E_PLUGIN_MONO (plugin); priv = plugin_mono->priv; - /* we need to do this every time since we may be called from any thread for some uses */ + /* We need to do this every time since we may + * be called from any thread for some uses. */ mono_thread_attach (domain); if (priv->assembly == NULL) { @@ -135,7 +136,9 @@ plugin_mono_invoke (EPlugin *plugin, } if (plugin_mono->handler == NULL - || (priv->class = mono_class_from_name (mono_assembly_get_image (priv->assembly), "", plugin_mono->handler)) == NULL) { + || (priv->class = mono_class_from_name ( + mono_assembly_get_image (priv->assembly), + "", plugin_mono->handler)) == NULL) { } else { priv->plugin = mono_object_new (domain, priv->class); /* could conceivably init with some context too */ |