From 94a56918218f8b5ec418525db6a559675ad6b47a Mon Sep 17 00:00:00 2001 From: Mauro Iazzi Date: Mon, 28 Apr 2008 17:20:31 +0200 Subject: [PATCH] fullname has no meaning for arguments --- new/cpptoxml/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/new/cpptoxml/main.cpp b/new/cpptoxml/main.cpp index c8554e3..0558074 100644 --- a/new/cpptoxml/main.cpp +++ b/new/cpptoxml/main.cpp @@ -185,7 +185,7 @@ QString XMLVisitor::visit(CodeModelItem i) { ret += ATTR_STR("context", current_context.join("::")); // FIXME: is this a dirty hack? yes, it is! if (ArgumentModelItem a = model_dynamic_cast(i)) { - ret += ATTR_STR("fullname", current_context.join("::")+"::"+i->qualifiedName().join("::")); + //ret += ATTR_STR("fullname", current_context.join("::")+"::"+i->qualifiedName().join("::")); } else if (EnumeratorModelItem a = model_dynamic_cast(i)) { ret += ATTR_STR("fullname", current_context.join("::")+"::"+i->qualifiedName().join("::")); } else { -- 2.11.4.GIT