From 72b187a223086f7c527b246ef0080fa93ed4f26f Mon Sep 17 00:00:00 2001 From: Rico Tzschichholz Date: Sat, 16 Feb 2019 19:41:45 +0100 Subject: valadoc: Follow rename of DataType data_type property to type_symbol --- libvaladoc/api/typereference.vala | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libvaladoc/api/typereference.vala') diff --git a/libvaladoc/api/typereference.vala b/libvaladoc/api/typereference.vala index 47bf5efc4..285c7d734 100644 --- a/libvaladoc/api/typereference.vala +++ b/libvaladoc/api/typereference.vala @@ -74,8 +74,8 @@ public class Valadoc.Api.TypeReference : Item { } // non ref counted types are weak, not unowned - if (element.data_type is Vala.TypeSymbol - && is_reference_counting ((Vala.TypeSymbol) element.data_type) == true) + if (element.type_symbol is Vala.TypeSymbol + && is_reference_counting ((Vala.TypeSymbol) element.type_symbol) == true) { return false; } @@ -110,8 +110,8 @@ public class Valadoc.Api.TypeReference : Item { } // non ref counted types are unowned, not weak - if (element.data_type is Vala.TypeSymbol - && is_reference_counting ((Vala.TypeSymbol) element.data_type) == false) + if (element.type_symbol is Vala.TypeSymbol + && is_reference_counting ((Vala.TypeSymbol) element.type_symbol) == false) { return false; } -- cgit v1.2.1