[anjuta] anjuta-tags: bgo#625964 - fix build with recent vala
- From: Vincent Untz <vuntz src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [anjuta] anjuta-tags: bgo#625964 - fix build with recent vala
- Date: Thu, 5 Aug 2010 12:17:36 +0000 (UTC)
commit ce22fc3068565242472b1c2cfba399ddb5dc0c94
Author: Vincent Untz <vuntz gnome org>
Date: Thu Aug 5 14:15:23 2010 +0200
anjuta-tags: bgo#625964 - fix build with recent vala
We also require vala 0.9.4 now, because of this change.
configure.in | 2 +-
plugins/symbol-db/anjuta-tags/ctags-visitor.vala | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/configure.in b/configure.in
index 01f8754..c159867 100644
--- a/configure.in
+++ b/configure.in
@@ -45,7 +45,7 @@ dnl Glade
GLADEUI_REQUIRED=3.7.1
dnl Vala
-VALA_REQUIRED=0.7.8
+VALA_REQUIRED=0.9.4
dnl Introspection
GI_REQUIRED=0.6.6
diff --git a/plugins/symbol-db/anjuta-tags/ctags-visitor.vala b/plugins/symbol-db/anjuta-tags/ctags-visitor.vala
index 51d662d..160c8fa 100644
--- a/plugins/symbol-db/anjuta-tags/ctags-visitor.vala
+++ b/plugins/symbol-db/anjuta-tags/ctags-visitor.vala
@@ -124,7 +124,7 @@ public class CTagsVisitor : CodeVisitor {
if (p.ellipsis) {
ret.append("...");
} else {
- ret.append (p.parameter_type.to_qualified_string());
+ ret.append (p.variable_type.to_qualified_string());
ret.append (" ");
ret.append (p.name);
}
@@ -295,7 +295,7 @@ public class CTagsVisitor : CodeVisitor {
entry.kind = 'f';
entry.access = get_access (f);
scope (f, entry.scope);
- entry.typeref = f.field_type.to_qualified_string();
+ entry.typeref = f.variable_type.to_qualified_string();
taglist.append(entry);
// print_tag(entry);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]