[couchdb-glib/wip/query-response] Fix indentation



commit 50de46c53517294fa6c8a417ce80daf3b480ebdc
Author: Krzysztof Klimonda <kklimonda syntaxhighlighted com>
Date:   Fri Nov 19 18:04:54 2010 +0100

    Fix indentation
    
    Indent all functions names to the same column

 couchdb-glib/couchdb-query.h    |   31 ++++++++++++++++---------------
 couchdb-glib/couchdb-response.h |   14 +++++++-------
 2 files changed, 23 insertions(+), 22 deletions(-)
---
diff --git a/couchdb-glib/couchdb-query.h b/couchdb-glib/couchdb-query.h
index 69669e9..0f18667 100644
--- a/couchdb-glib/couchdb-query.h
+++ b/couchdb-glib/couchdb-query.h
@@ -58,27 +58,28 @@ typedef struct {
 	GObjectClass parent_class;
 } CouchdbQueryClass;
 
-GType couchdb_query_get_type (void);
+GType         couchdb_query_get_type (void);
 CouchdbQuery *couchdb_query_new (void);
 CouchdbQuery *couchdb_query_new_for_path (const char *path);
 CouchdbQuery *couchdb_query_new_for_view (const char * design_doc,
 					  const char * view_name);
 
-const char *couchdb_query_get_path (CouchdbQuery * self);
-void couchdb_query_set_path (CouchdbQuery * self,
-			     const char * path);
-const char *couchdb_query_get_method (CouchdbQuery * self);
-void couchdb_query_set_method (CouchdbQuery * self,
-			       const char * method);
-const char *couchdb_query_get_option (CouchdbQuery * self,
-				      const char * name);
-void couchdb_query_set_option (CouchdbQuery * self,
-			       const char * name,
-			       const char * value);
+const char   *couchdb_query_get_path (CouchdbQuery * self);
+void          couchdb_query_set_path (CouchdbQuery * self,
+				      const char * path);
+const char   *couchdb_query_get_method (CouchdbQuery * self);
+void          couchdb_query_set_method (CouchdbQuery * self,
+					const char * method);
+const char   *couchdb_query_get_option (CouchdbQuery * self,
+					const char * name);
+void          couchdb_query_set_option (CouchdbQuery * self,
+					const char * name,
+					const char * value);
 
-const char *couchdb_query_get_query_options_string (CouchdbQuery * self);
-JsonObject *couchdb_query_get_json_object (CouchdbQuery * self);
-void couchdb_query_set_json_object (CouchdbQuery * self, JsonObject * object);
+const char   *couchdb_query_get_query_options_string (CouchdbQuery * self);
+JsonObject   *couchdb_query_get_json_object (CouchdbQuery * self);
+void          couchdb_query_set_json_object (CouchdbQuery * self,
+					     JsonObject * object);
 
 G_END_DECLS
 
diff --git a/couchdb-glib/couchdb-response.h b/couchdb-glib/couchdb-response.h
index 4be6e45..36e3ccc 100644
--- a/couchdb-glib/couchdb-response.h
+++ b/couchdb-glib/couchdb-response.h
@@ -54,15 +54,15 @@ typedef struct {
 	GObjectClass parent_class;
 } CouchdbResponseClass;
 
-GType couchdb_response_get_type (void);
+GType            couchdb_response_get_type (void);
 CouchdbResponse *couchdb_response_new (void);
 
-const char *couchdb_response_get_etag (CouchdbResponse *self);
-guint couchdb_response_get_status_code (CouchdbResponse *self);
-const char *couchdb_response_get_content_type (CouchdbResponse *self);
-gsize couchdb_response_get_content_length (CouchdbResponse *self);
-JsonObject *couchdb_response_get_json_object (CouchdbResponse *self);
-GList *couchdb_response_get_rows (CouchdbResponse *self);
+const char      *couchdb_response_get_etag (CouchdbResponse *self);
+guint            couchdb_response_get_status_code (CouchdbResponse *self);
+const char      *couchdb_response_get_content_type (CouchdbResponse *self);
+gsize            couchdb_response_get_content_length (CouchdbResponse *self);
+JsonObject      *couchdb_response_get_json_object (CouchdbResponse *self);
+GList           *couchdb_response_get_rows (CouchdbResponse *self);
 
 G_END_DECLS
 



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