]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
Fix symbol dependency calculation for arrays, fixes bug 537255
authorJürg Billeter <j@bitron.ch>
Thu, 17 Jul 2008 08:58:23 +0000 (08:58 +0000)
committerJürg Billeter <juergbi@src.gnome.org>
Thu, 17 Jul 2008 08:58:23 +0000 (08:58 +0000)
2008-07-17  Jürg Billeter  <j@bitron.ch>

* vala/valaarraytype.vala:

Fix symbol dependency calculation for arrays, fixes bug 537255

svn path=/trunk/; revision=1709

ChangeLog
vala/valaarraytype.vala

index 1a5ec82d22eb7bcd85e73d52591e0262a3344be8..27432e1b12278de85c950635092f4e822f4cbe17 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2008-07-17  Jürg Billeter  <j@bitron.ch>
+
+       * vala/valaarraytype.vala:
+
+       Fix symbol dependency calculation for arrays, fixes bug 537255
+
 2008-07-17  Jürg Billeter  <j@bitron.ch>
 
        * vala/valaparser.vala:
index 9a7cb76d44a79d1161dad653c7b3856d99f472b9..1b12a898345c2872b980346ad248ad7d0fdf4956 100644 (file)
@@ -191,4 +191,8 @@ public class Vala.ArrayType : ReferenceType {
                        element_type = new_type;
                }
        }
+
+       public override Gee.List<Symbol> get_symbols () {
+               return element_type.get_symbols ();
+       }
 }