aboutsummaryrefslogtreecommitdiffstats
path: root/modules/addressbook
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2010-03-29 06:54:27 +0800
committerMatthew Barnes <mbarnes@redhat.com>2010-03-29 06:55:22 +0800
commitfa2da5acd6f45520739f747062d04cdb866b2428 (patch)
tree4716aebb3c2a193cc3cd398d2878d0e60aa2ee1e /modules/addressbook
parent68581a10047876899dc97cb30777435e1f42a5a1 (diff)
downloadgsoc2013-evolution-fa2da5acd6f45520739f747062d04cdb866b2428.tar
gsoc2013-evolution-fa2da5acd6f45520739f747062d04cdb866b2428.tar.gz
gsoc2013-evolution-fa2da5acd6f45520739f747062d04cdb866b2428.tar.bz2
gsoc2013-evolution-fa2da5acd6f45520739f747062d04cdb866b2428.tar.lz
gsoc2013-evolution-fa2da5acd6f45520739f747062d04cdb866b2428.tar.xz
gsoc2013-evolution-fa2da5acd6f45520739f747062d04cdb866b2428.tar.zst
gsoc2013-evolution-fa2da5acd6f45520739f747062d04cdb866b2428.zip
Fix mismatched quotes.
Diffstat (limited to 'modules/addressbook')
-rw-r--r--modules/addressbook/e-book-shell-migrate.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/modules/addressbook/e-book-shell-migrate.c b/modules/addressbook/e-book-shell-migrate.c
index c237f40d94..55246ce047 100644
--- a/modules/addressbook/e-book-shell-migrate.c
+++ b/modules/addressbook/e-book-shell-migrate.c
@@ -370,7 +370,7 @@ migrate_contacts (MigrationContext *context, EBook *old_book, EBook *new_book)
if (!e_book_add_contact (new_book,
contact,
&e))
- g_warning ("contact add failed: `%s'", e->message);
+ g_warning ("contact add failed: '%s'", e->message);
num_added ++;
@@ -400,14 +400,14 @@ migrate_contact_folder_to_source (MigrationContext *context, gchar *old_path, ES
old_book = e_book_new (old_source, &e);
if (!old_book
|| !e_book_open (old_book, TRUE, &e)) {
- g_warning ("failed to load source book for migration: `%s'", e->message);
+ g_warning ("failed to load source book for migration: '%s'", e->message);
goto finish;
}
new_book = e_book_new (new_source, &e);
if (!new_book
|| !e_book_open (new_book, FALSE, &e)) {
- g_warning ("failed to load destination book for migration: `%s'", e->message);
+ g_warning ("failed to load destination book for migration: '%s'", e->message);
goto finish;
}
@@ -809,7 +809,7 @@ migrate_completion_folders (MigrationContext *context)
e_source_set_property (source, "completion", "true");
}
else {
- g_warning ("found completion folder with uri `%s' that "
+ g_warning ("found completion folder with uri '%s' that "
"doesn't correspond to anything we migrated.", physical_uri);
}
@@ -886,7 +886,7 @@ migrate_contact_lists_for_local_folders (MigrationContext *context, ESourceGroup
if (!e_book_commit_contact (book,
contact,
&e))
- g_warning ("contact commit failed: `%s'", e->message);
+ g_warning ("contact commit failed: '%s'", e->message);
}
num_converted ++;
@@ -989,7 +989,7 @@ migrate_company_phone_for_local_folders (MigrationContext *context, ESourceGroup
if (!e_book_commit_contact (book,
contact,
&e))
- g_warning ("contact commit failed: `%s'", e->message);
+ g_warning ("contact commit failed: '%s'", e->message);
}
num_converted ++;