summaryrefslogtreecommitdiff
path: root/vala/valapointertype.vala
diff options
context:
space:
mode:
authorJuerg Billeter <j@bitron.ch>2008-05-25 14:59:14 +0000
committerJürg Billeter <juergbi@src.gnome.org>2008-05-25 14:59:14 +0000
commit7d19754406f27f24d4870a908ed199152fae0494 (patch)
treef16331809b57275aa28f00530b7147cec874bf5c /vala/valapointertype.vala
parent6ed6d1f21df0b4aff94a7f8effd377834a882f46 (diff)
downloadvala-7d19754406f27f24d4870a908ed199152fae0494.tar.gz
Write qualified types in the interface writer
2008-05-25 Juerg Billeter <j@bitron.ch> * vala/valaarraytype.vala: * vala/valadatatype.vala: * vala/valadelegatetype.vala: * vala/valafieldprototype.vala: * vala/valainterfacewriter.vala: * vala/valamethodtype.vala: * vala/valapointertype.vala: * vala/valaunresolvedtype.vala: * vala/valavoidtype.vala: Write qualified types in the interface writer svn path=/trunk/; revision=1432
Diffstat (limited to 'vala/valapointertype.vala')
-rw-r--r--vala/valapointertype.vala4
1 files changed, 2 insertions, 2 deletions
diff --git a/vala/valapointertype.vala b/vala/valapointertype.vala
index e2ada6a2a..b00fcf690 100644
--- a/vala/valapointertype.vala
+++ b/vala/valapointertype.vala
@@ -46,8 +46,8 @@ public class Vala.PointerType : DataType {
this.source_reference = source_reference;
}
- public override string to_string () {
- return base_type.to_string () + "*";
+ public override string to_qualified_string (Scope? scope) {
+ return base_type.to_qualified_string (scope) + "*";
}
public override string? get_cname () {