[gobject-introspection] [annotationparser] Reuse method for determining array type



commit 7d161b5ac2e8c7aa1d22eadb47fc2381fadd8ba1
Author: Johan Dahlin <johan gnome org>
Date:   Tue Jun 22 09:47:26 2010 -0300

    [annotationparser] Reuse method for determining array type

 giscanner/annotationparser.py |    4 +---
 1 files changed, 1 insertions(+), 3 deletions(-)
---
diff --git a/giscanner/annotationparser.py b/giscanner/annotationparser.py
index bea8773..43ca03c 100644
--- a/giscanner/annotationparser.py
+++ b/giscanner/annotationparser.py
@@ -713,9 +713,7 @@ class AnnotationApplier(object):
         else:
             array_values = {}
 
-        is_g_array = (node.type.ctype.startswith('GArray*') or
-                      node.type.ctype.startswith('GPtrArray*') or
-                      node.type.ctype.startswith('GByteArray*'))
+        is_g_array = self._is_array_type(node)
 
         element_type = options.get(OPT_ELEMENT_TYPE)
         if element_type is not None:



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