summaryrefslogtreecommitdiff
path: root/vala/valainstancecast.vala
diff options
context:
space:
mode:
authorJuerg Billeter <j@bitron.ch>2007-12-02 10:23:29 +0000
committerJürg Billeter <juergbi@src.gnome.org>2007-12-02 10:23:29 +0000
commit160d75b8e40911b86fa2383116454f4efaa5096c (patch)
treeb2a03b31c855731a8a242eeb25dc71adebe67504 /vala/valainstancecast.vala
parent064eb741c97ba311cd77de22600c9ea8f67cddf4 (diff)
downloadvala-160d75b8e40911b86fa2383116454f4efaa5096c.tar.gz
rename DataType to Typesymbol
2007-12-02 Juerg Billeter <j@bitron.ch> * vala/valatypesymbol.vala, vala/Makefile.am: rename DataType to Typesymbol * vala/*.vala, gobject/*.vala, vapigen/*.vala: adapt after renaming svn path=/trunk/; revision=745
Diffstat (limited to 'vala/valainstancecast.vala')
-rw-r--r--vala/valainstancecast.vala6
1 files changed, 3 insertions, 3 deletions
diff --git a/vala/valainstancecast.vala b/vala/valainstancecast.vala
index 3f344b847..137b2da22 100644
--- a/vala/valainstancecast.vala
+++ b/vala/valainstancecast.vala
@@ -1,6 +1,6 @@
/* valainstancecast.vala
*
- * Copyright (C) 2006 Jürg Billeter
+ * Copyright (C) 2006-2007 Jürg Billeter
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
@@ -29,7 +29,7 @@ public class Vala.InstanceCast : CCodeFunctionCall {
/**
* The target type.
*/
- public weak DataType! type_reference { get; set construct; }
+ public weak Typesymbol! type_reference { get; set construct; }
/**
* The expression to be cast.
@@ -43,7 +43,7 @@ public class Vala.InstanceCast : CCodeFunctionCall {
* @param type the target type
* @return newly created instance cast expression
*/
- public InstanceCast (CCodeExpression! expr, DataType! type) {
+ public InstanceCast (CCodeExpression! expr, Typesymbol! type) {
inner = expr;
type_reference = type;
}