[glib] Whitespace cleanup



commit 156a3f71952e37aef199ab381f552a5fe014decb
Author: Matthias Clasen <mclasen redhat com>
Date:   Fri Sep 3 19:38:56 2010 -0400

    Whitespace cleanup

 glib/gcache.c |   28 ++++++++++++++--------------
 glib/gcache.h |    2 +-
 2 files changed, 15 insertions(+), 15 deletions(-)
---
diff --git a/glib/gcache.c b/glib/gcache.c
index bace662..6a6163c 100644
--- a/glib/gcache.c
+++ b/glib/gcache.c
@@ -21,10 +21,10 @@
  * Modified by the GLib Team and others 1997-2000.  See the AUTHORS
  * file for a list of people on the GLib Team.  See the ChangeLog
  * files for a list of changes.  These files are distributed with
- * GLib at ftp://ftp.gtk.org/pub/gtk/. 
+ * GLib at ftp://ftp.gtk.org/pub/gtk/.
  */
 
-/* 
+/*
  * MT safe
  */
 
@@ -159,12 +159,12 @@ g_cache_node_destroy (GCacheNode *node)
  **/
 GCache*
 g_cache_new (GCacheNewFunc      value_new_func,
-	     GCacheDestroyFunc  value_destroy_func,
-	     GCacheDupFunc      key_dup_func,
-	     GCacheDestroyFunc  key_destroy_func,
-	     GHashFunc          hash_key_func,
-	     GHashFunc          hash_value_func,
-	     GEqualFunc         key_equal_func)
+             GCacheDestroyFunc  value_destroy_func,
+             GCacheDupFunc      key_dup_func,
+             GCacheDestroyFunc  key_destroy_func,
+             GHashFunc          hash_key_func,
+             GHashFunc          hash_value_func,
+             GEqualFunc         key_equal_func)
 {
   GCache *cache;
 
@@ -223,7 +223,7 @@ g_cache_destroy (GCache *cache)
  **/
 gpointer
 g_cache_insert (GCache   *cache,
-		gpointer  key)
+                gpointer  key)
 {
   GCacheNode *node;
   gpointer value;
@@ -258,7 +258,7 @@ g_cache_insert (GCache   *cache,
  **/
 void
 g_cache_remove (GCache        *cache,
-		gconstpointer  value)
+                gconstpointer  value)
 {
   GCacheNode *node;
   gpointer key;
@@ -297,8 +297,8 @@ g_cache_remove (GCache        *cache,
  **/
 void
 g_cache_key_foreach (GCache   *cache,
-		     GHFunc    func,
-		     gpointer  user_data)
+                     GHFunc    func,
+                     gpointer  user_data)
 {
   g_return_if_fail (cache != NULL);
   g_return_if_fail (func != NULL);
@@ -320,8 +320,8 @@ g_cache_key_foreach (GCache   *cache,
  **/
 void
 g_cache_value_foreach (GCache   *cache,
-		       GHFunc    func,
-		       gpointer  user_data)
+                       GHFunc    func,
+                       gpointer  user_data)
 {
   g_return_if_fail (cache != NULL);
   g_return_if_fail (func != NULL);
diff --git a/glib/gcache.h b/glib/gcache.h
index 283783d..7d60d58 100644
--- a/glib/gcache.h
+++ b/glib/gcache.h
@@ -8,7 +8,7 @@
  *
  * This library is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	 See the GNU
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public



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