aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-import.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2009-12-26 13:26:18 +0800
committerMatthew Barnes <mbarnes@redhat.com>2009-12-26 13:26:18 +0800
commitbd31f49bac99f21656dc7d0352d5b3f7385f71b2 (patch)
treeb693ad7ec135bd8031458611b5ec485abd866463 /e-util/e-import.c
parent5f83c587b2da0b9578117796253b7726e98748cc (diff)
downloadgsoc2013-evolution-bd31f49bac99f21656dc7d0352d5b3f7385f71b2.tar
gsoc2013-evolution-bd31f49bac99f21656dc7d0352d5b3f7385f71b2.tar.gz
gsoc2013-evolution-bd31f49bac99f21656dc7d0352d5b3f7385f71b2.tar.bz2
gsoc2013-evolution-bd31f49bac99f21656dc7d0352d5b3f7385f71b2.tar.lz
gsoc2013-evolution-bd31f49bac99f21656dc7d0352d5b3f7385f71b2.tar.xz
gsoc2013-evolution-bd31f49bac99f21656dc7d0352d5b3f7385f71b2.tar.zst
gsoc2013-evolution-bd31f49bac99f21656dc7d0352d5b3f7385f71b2.zip
Coding style and whitespace cleanup.
Diffstat (limited to 'e-util/e-import.c')
-rw-r--r--e-util/e-import.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/e-util/e-import.c b/e-util/e-import.c
index 13e09d4dba..e0bd5c6085 100644
--- a/e-util/e-import.c
+++ b/e-util/e-import.c
@@ -365,8 +365,9 @@ e_import_target_new_uri (EImport *import,
const gchar *uri_src,
const gchar *uri_dst)
{
- EImportTargetURI *t = e_import_target_new (import, E_IMPORT_TARGET_URI, sizeof (*t));
+ EImportTargetURI *t;
+ t = e_import_target_new (import, E_IMPORT_TARGET_URI, sizeof (*t));
t->uri_src = g_strdup (uri_src);
t->uri_dest = g_strdup (uri_dst);
@@ -542,8 +543,11 @@ emph_construct (EPluginHook *eph, EPlugin *ep, xmlNodePtr root)
ihook = emph_construct_importer (eph, node);
if (ihook) {
- e_import_class_add_importer (class, &ihook->importer, eih_free_importer, eph);
- emph->importers = g_slist_append (emph->importers, ihook);
+ e_import_class_add_importer (
+ class, &ihook->importer,
+ eih_free_importer, eph);
+ emph->importers = g_slist_append (
+ emph->importers, ihook);
}
}
node = node->next;