diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-01-03 12:46:23 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-01-04 02:15:01 +0800 |
commit | e77ee5d5d38ad95bce550db62bf4105f43cf88c6 (patch) | |
tree | 3b4c275b086d3f49360c551e686f62140a8ee4d4 /addressbook/util/addressbook.c | |
parent | 3cfd5d640908b6441769341c764de70006262c6e (diff) | |
download | gsoc2013-evolution-e77ee5d5d38ad95bce550db62bf4105f43cf88c6.tar.gz gsoc2013-evolution-e77ee5d5d38ad95bce550db62bf4105f43cf88c6.tar.zst gsoc2013-evolution-e77ee5d5d38ad95bce550db62bf4105f43cf88c6.zip |
Coding style and whitespace cleanup.
Diffstat (limited to 'addressbook/util/addressbook.c')
-rw-r--r-- | addressbook/util/addressbook.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/addressbook/util/addressbook.c b/addressbook/util/addressbook.c index d49f19bd7a..b394319c0f 100644 --- a/addressbook/util/addressbook.c +++ b/addressbook/util/addressbook.c @@ -331,7 +331,10 @@ addressbook_load_default_book (EBookCallback cb, gpointer closure) book = e_book_new_default_addressbook (NULL); if (!book) - load_source_cb (NULL, E_BOOK_ERROR_OTHER_ERROR, load_source_data); /* XXX we should just use a GError and it's error code here */ + /* XXX We should just use a GError and its error code here. */ + load_source_cb ( + NULL, E_BOOK_ERROR_OTHER_ERROR, load_source_data); else - e_book_async_open (book, FALSE, default_book_cb, load_source_data); + e_book_async_open ( + book, FALSE, default_book_cb, load_source_data); } |