summaryrefslogtreecommitdiff
path: root/vala/valastructvaluetype.vala
diff options
context:
space:
mode:
authorJürg Billeter <j@bitron.ch>2010-10-28 13:07:01 +0200
committerJürg Billeter <j@bitron.ch>2010-10-28 16:20:17 +0200
commite81776c024ab1e72b918612e49606f8500aaad06 (patch)
treee80e6e65ccc417359a8cf8531495d5157a68d232 /vala/valastructvaluetype.vala
parent5f3ed0f460a06120900b082c49f9da8bcc1a0a84 (diff)
downloadvala-e81776c024ab1e72b918612e49606f8500aaad06.tar.gz
Rename FormalParameter to Parameter
Diffstat (limited to 'vala/valastructvaluetype.vala')
-rw-r--r--vala/valastructvaluetype.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/vala/valastructvaluetype.vala b/vala/valastructvaluetype.vala
index 52880a8a7..556162789 100644
--- a/vala/valastructvaluetype.vala
+++ b/vala/valastructvaluetype.vala
@@ -48,7 +48,7 @@ public class Vala.StructValueType : ValueType {
}
}
- public override List<FormalParameter>? get_parameters () {
+ public override List<Parameter>? get_parameters () {
var st = type_symbol as Struct;
if (st != null && st.default_construction_method != null) {
return st.default_construction_method.get_parameters ();