[evolution-data-server/gnome-3-6] Coding style and whitespace cleanups.



commit 760ac4cc89b4db017de246a53c3edfa43cc13f0d
Author: Matthew Barnes <mbarnes redhat com>
Date:   Sat Jan 12 10:54:57 2013 -0500

    Coding style and whitespace cleanups.

 .../backends/webdav/e-book-backend-webdav.c        |    2 +-
 addressbook/libebook/e-book-query.c                |    6 +++---
 .../backends/contacts/e-cal-backend-contacts.c     |    2 +-
 camel/camel-db.c                                   |    2 +-
 libedataserver/e-source-registry.c                 |    2 +-
 libedataserverui/e-name-selector-entry.c           |    2 +-
 .../evolution-source-registry.c                    |    6 +++---
 7 files changed, 11 insertions(+), 11 deletions(-)
---
diff --git a/addressbook/backends/webdav/e-book-backend-webdav.c b/addressbook/backends/webdav/e-book-backend-webdav.c
index 393b2b3..0b3410c 100644
--- a/addressbook/backends/webdav/e-book-backend-webdav.c
+++ b/addressbook/backends/webdav/e-book-backend-webdav.c
@@ -1351,7 +1351,7 @@ e_book_backend_webdav_open (EBookBackend *backend,
 	g_mutex_lock (&priv->cache_lock);
 
 	/* make sure the priv->uri ends with a forward slash */
-	if (priv->uri[strlen(priv->uri) - 1] != '/') {
+	if (priv->uri[strlen (priv->uri) - 1] != '/') {
 		gchar *tmp = priv->uri;
 		priv->uri = g_strconcat (tmp, "/", NULL);
 		g_free (tmp);
diff --git a/addressbook/libebook/e-book-query.c b/addressbook/libebook/e-book-query.c
index 74ff9c3..aea6709 100644
--- a/addressbook/libebook/e-book-query.c
+++ b/addressbook/libebook/e-book-query.c
@@ -619,9 +619,9 @@ func_exists (struct _ESExp *f,
 
 static ESExpResult *
 func_exists_vcard (struct _ESExp *f,
-		   gint argc,
-		   struct _ESExpResult **argv,
-		   gpointer data)
+                   gint argc,
+                   struct _ESExpResult **argv,
+                   gpointer data)
 {
 	GList **list = data;
 	ESExpResult *r;
diff --git a/calendar/backends/contacts/e-cal-backend-contacts.c b/calendar/backends/contacts/e-cal-backend-contacts.c
index 2f7b358..2c387e6 100644
--- a/calendar/backends/contacts/e-cal-backend-contacts.c
+++ b/calendar/backends/contacts/e-cal-backend-contacts.c
@@ -515,7 +515,7 @@ contact_record_cb_new (ECalBackendContacts *cbc,
 
 static void
 contact_record_cb_free (ContactRecordCB *cb_data,
-			gboolean can_free_result)
+                        gboolean can_free_result)
 {
 	if (can_free_result) {
 		if (cb_data->as_string)
diff --git a/camel/camel-db.c b/camel/camel-db.c
index 7e8501f..87e78ba 100644
--- a/camel/camel-db.c
+++ b/camel/camel-db.c
@@ -119,7 +119,7 @@ sync_push_request (CamelSqlite3File *cFile,
 
 	if (!cFile->flags) {
 		/* nothing to sync, might be when xClose is called
-		   without any pending xSync request */
+		 * without any pending xSync request */
 		g_static_rec_mutex_unlock (&cFile->sync_mutex);
 		return;
 	}
diff --git a/libedataserver/e-source-registry.c b/libedataserver/e-source-registry.c
index 681754b..18bf41c 100644
--- a/libedataserver/e-source-registry.c
+++ b/libedataserver/e-source-registry.c
@@ -1732,7 +1732,7 @@ exit:
 	g_main_context_pop_thread_default (main_context);
 
 	/* Make sure the main_context doesn't have pending operations;
-	   workarounds https://bugzilla.gnome.org/show_bug.cgi?id=690126 */
+	 * workarounds https://bugzilla.gnome.org/show_bug.cgi?id=690126 */
 	while (g_main_context_pending (main_context))
 		g_main_context_iteration (main_context, FALSE);
 
diff --git a/libedataserverui/e-name-selector-entry.c b/libedataserverui/e-name-selector-entry.c
index 4f0f570..f8987f2 100644
--- a/libedataserverui/e-name-selector-entry.c
+++ b/libedataserverui/e-name-selector-entry.c
@@ -3100,7 +3100,7 @@ populate_popup (ENameSelectorEntry *name_selector_entry,
 
 static gint
 compare_gint_ptr_cb (gconstpointer a,
-		     gconstpointer b)
+                     gconstpointer b)
 {
 	return GPOINTER_TO_INT (a) - GPOINTER_TO_INT (b);
 }
diff --git a/services/evolution-source-registry/evolution-source-registry.c b/services/evolution-source-registry/evolution-source-registry.c
index 6aca836..81bddf8 100644
--- a/services/evolution-source-registry/evolution-source-registry.c
+++ b/services/evolution-source-registry/evolution-source-registry.c
@@ -93,9 +93,9 @@ reload:
 		g_print ("Reloading...\n");
 
 		/* It's possible the Reload is called after restore, where
-		   the ~/.config/evolution/sources directory can be missing,
-		   thus create it, because e_server_side_source_get_user_dir()
-		   may have its static variable already set to non-NULL value.
+		 * the ~/.config/evolution/sources directory can be missing,
+		 * thus create it, because e_server_side_source_get_user_dir()
+		 * may have its static variable already set to non-NULL value.
 		*/
 		config_dir = e_get_user_config_dir ();
 		dirname = g_build_filename (config_dir, "sources", NULL);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]