Author: miguel
Date: 2006-10-17 17:32:31 -0400 (Tue, 17 Oct 2006)
New Revision: 66761

Modified:
   trunk/mono/eglib/ChangeLog
   trunk/mono/eglib/src/ghashtable.c
   trunk/mono/eglib/src/gutf8.c
Log:
2006-10-17  Miguel de Icaza  <[EMAIL PROTECTED]>

        * src/gutf8.c: internal methods

        * src/ghashtable.c: internal methods.



Modified: trunk/mono/eglib/ChangeLog
===================================================================
--- trunk/mono/eglib/ChangeLog  2006-10-17 20:22:11 UTC (rev 66760)
+++ trunk/mono/eglib/ChangeLog  2006-10-17 21:32:31 UTC (rev 66761)
@@ -1,3 +1,9 @@
+2006-10-17  Miguel de Icaza  <[EMAIL PROTECTED]>
+
+       * src/gutf8.c: internal methods
+
+       * src/ghashtable.c: internal methods.
+
 2006-10-16  Miguel de Icaza  <[EMAIL PROTECTED]>
 
        * src/gerror.c (g_propagate_error): Implement.

Modified: trunk/mono/eglib/src/ghashtable.c
===================================================================
--- trunk/mono/eglib/src/ghashtable.c   2006-10-17 20:22:11 UTC (rev 66760)
+++ trunk/mono/eglib/src/ghashtable.c   2006-10-17 21:32:31 UTC (rev 66761)
@@ -133,7 +133,7 @@
        return hash;
 }
 
-void
+static void
 do_rehash (GHashTable *hash)
 {
        int current_size, i;
@@ -161,7 +161,7 @@
        g_free (table);
 }
 
-void
+static void
 rehash (GHashTable *hash)
 {
        int diff = ABS (hash->last_rehash, hash->in_use);

Modified: trunk/mono/eglib/src/gutf8.c
===================================================================
--- trunk/mono/eglib/src/gutf8.c        2006-10-17 20:22:11 UTC (rev 66760)
+++ trunk/mono/eglib/src/gutf8.c        2006-10-17 21:32:31 UTC (rev 66761)
@@ -104,7 +104,7 @@
        return ret;
 }
 
-glong
+static glong
 utf8_to_utf16_len (const gchar *str, glong len, glong *items_read, GError 
**error)
 {
        /* It is almost identical to UTF8Encoding.GetCharCount() */
@@ -304,7 +304,7 @@
        return ret;
 }
 
-glong
+static glong
 utf16_to_utf8_len (const gunichar2 *str, glong len, glong *items_read, GError 
**error)
 {
        glong ret, in_pos;

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to