gjs r40 - trunk/gi



Author: lucasr
Date: Thu Oct 23 14:05:58 2008
New Revision: 40
URL: http://svn.gnome.org/viewvc/gjs?rev=40&view=rev

Log:
gi/arg.c: rename gjs_array_to_list to gjs_array_to_g_list for consistency
with gjs_array_from_g_list.


Modified:
   trunk/gi/arg.c

Modified: trunk/gi/arg.c
==============================================================================
--- trunk/gi/arg.c	(original)
+++ trunk/gi/arg.c	Thu Oct 23 14:05:58 2008
@@ -100,13 +100,13 @@
 }
 
 static JSBool
-gjs_array_to_list(JSContext   *context,
-                  jsval        array_value,
-                  unsigned int length,
-                  GITypeInfo  *param_info,
-                  GITypeTag    list_type,
-                  GList      **list_p,
-                  GSList     **slist_p)
+gjs_array_to_g_list(JSContext   *context,
+                    jsval        array_value,
+                    unsigned int length,
+                    GITypeInfo  *param_info,
+                    GITypeTag    list_type,
+                    GList      **list_p,
+                    GSList     **slist_p)
 {
     guint32 i;
     GList *list;
@@ -455,12 +455,12 @@
                 list = NULL;
                 slist = NULL;
 
-                if (!gjs_array_to_list(context,
-                                       value,
-                                       length,
-                                       param_info,
-                                       type_tag,
-                                       &list, &slist)) {
+                if (!gjs_array_to_g_list(context,
+                                         value,
+                                         length,
+                                         param_info,
+                                         type_tag,
+                                         &list, &slist)) {
                     wrong = TRUE;
                 }
 



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