make the argument const to get rid of warning
authorSoeren Sandmann <sandmann@daimi.au.dk>
Tue, 30 Sep 2003 13:36:25 +0000 (13:36 +0000)
committerSøren Sandmann Pedersen <ssp@src.gnome.org>
Tue, 30 Sep 2003 13:36:25 +0000 (13:36 +0000)
Tue Sep 30 15:31:16 2003  Soeren Sandmann  <sandmann@daimi.au.dk>

* glib/guniprop.c (has_more_above): make the argument const to
get rid of warning

* glib/garray.c (g_byte_array_remove_range): insert cast to get
rid of warning

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
glib/garray.c
glib/guniprop.c

index cbc7790..bc32bd1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+Tue Sep 30 15:31:16 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
+
+       * glib/guniprop.c (has_more_above): make the argument const to
+       get rid of warning
+
+       * glib/garray.c (g_byte_array_remove_range): insert cast to get
+       rid of warning
+
 2003-09-29  Tor Lillqvist  <tml@iki.fi>
 
        * tests/testglib.c (main): Use hardcoded name for DLL, as there is
index cbc7790..bc32bd1 100644 (file)
@@ -1,3 +1,11 @@
+Tue Sep 30 15:31:16 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
+
+       * glib/guniprop.c (has_more_above): make the argument const to
+       get rid of warning
+
+       * glib/garray.c (g_byte_array_remove_range): insert cast to get
+       rid of warning
+
 2003-09-29  Tor Lillqvist  <tml@iki.fi>
 
        * tests/testglib.c (main): Use hardcoded name for DLL, as there is
index cbc7790..bc32bd1 100644 (file)
@@ -1,3 +1,11 @@
+Tue Sep 30 15:31:16 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
+
+       * glib/guniprop.c (has_more_above): make the argument const to
+       get rid of warning
+
+       * glib/garray.c (g_byte_array_remove_range): insert cast to get
+       rid of warning
+
 2003-09-29  Tor Lillqvist  <tml@iki.fi>
 
        * tests/testglib.c (main): Use hardcoded name for DLL, as there is
index cbc7790..bc32bd1 100644 (file)
@@ -1,3 +1,11 @@
+Tue Sep 30 15:31:16 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
+
+       * glib/guniprop.c (has_more_above): make the argument const to
+       get rid of warning
+
+       * glib/garray.c (g_byte_array_remove_range): insert cast to get
+       rid of warning
+
 2003-09-29  Tor Lillqvist  <tml@iki.fi>
 
        * tests/testglib.c (main): Use hardcoded name for DLL, as there is
index cbc7790..bc32bd1 100644 (file)
@@ -1,3 +1,11 @@
+Tue Sep 30 15:31:16 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
+
+       * glib/guniprop.c (has_more_above): make the argument const to
+       get rid of warning
+
+       * glib/garray.c (g_byte_array_remove_range): insert cast to get
+       rid of warning
+
 2003-09-29  Tor Lillqvist  <tml@iki.fi>
 
        * tests/testglib.c (main): Use hardcoded name for DLL, as there is
index cbc7790..bc32bd1 100644 (file)
@@ -1,3 +1,11 @@
+Tue Sep 30 15:31:16 2003  Soeren Sandmann  <sandmann@daimi.au.dk>
+
+       * glib/guniprop.c (has_more_above): make the argument const to
+       get rid of warning
+
+       * glib/garray.c (g_byte_array_remove_range): insert cast to get
+       rid of warning
+
 2003-09-29  Tor Lillqvist  <tml@iki.fi>
 
        * tests/testglib.c (main): Use hardcoded name for DLL, as there is
index c7c6dac..75ec5d5 100644 (file)
@@ -705,7 +705,7 @@ g_byte_array_remove_range (GByteArray *array,
   g_return_val_if_fail (index_ < array->len, FALSE);
   g_return_val_if_fail (index_ + length <= array->len, FALSE);
 
-  return g_array_remove_range ((GArray*) array, index_, length);
+  return (GByteArray *)g_array_remove_range ((GArray*) array, index_, length);
 }
 
 void
index 349870a..8603a81 100644 (file)
@@ -741,9 +741,9 @@ g_utf8_strup (const gchar *str,
 /* traverses the string checking for characters with combining class == 230
  * until a base character is found */
 static gboolean
-has_more_above (gchar *str)
+has_more_above (const gchar *str)
 {
-  gchar *p = str;
+  const gchar *p = str;
   gint combining_class;
 
   while (*p)