summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAllen Winter <allen.winter@kdab.com>2017-01-11 16:34:11 -0500
committerAllen Winter <allen.winter@kdab.com>2017-01-11 16:34:11 -0500
commit7446557cdaf9d02c138c76916e4f90ef2abedb11 (patch)
tree3ac9460c6feded087da6485251689d72a70b1d15
parent3f1027e464d38c32cb214c73a62203efbc5053f1 (diff)
downloadlibical-git-7446557cdaf9d02c138c76916e4f90ef2abedb11.tar.gz
libical-glib-docs.xml.in - revert the "new symbols in" pages
-rw-r--r--doc/reference/libical-glib/libical-glib-docs.xml.in12
-rw-r--r--src/libical-glib/tools/xml-parser.c4
2 files changed, 9 insertions, 7 deletions
diff --git a/doc/reference/libical-glib/libical-glib-docs.xml.in b/doc/reference/libical-glib/libical-glib-docs.xml.in
index 73aaa4e7..483d1708 100644
--- a/doc/reference/libical-glib/libical-glib-docs.xml.in
+++ b/doc/reference/libical-glib/libical-glib-docs.xml.in
@@ -60,18 +60,18 @@
<title>API Index</title>
<xi:include href="xml/api-index-full.xml"><xi:fallback /></xi:include>
</index>
- <index id="api-index-3.0" role="3.0">
+ <!--<index id="api-index-3.0" role="3.0">
<title>Index of new symbols in 3.0</title>
<xi:include href="xml/api-index-3.0.xml"><xi:fallback /></xi:include>
- </index>
- <index id="api-index-2.0" role="2.0">
+ </index>-->
+ <!--<index id="api-index-2.0" role="2.0">
<title>Index of new symbols in 2.0</title>
<xi:include href="xml/api-index-2.0.xml"><xi:fallback /></xi:include>
- </index>
- <index id="api-index-1.0" role="1.0">
+ </index>-->
+ <!--<index id="api-index-1.0" role="1.0">
<title>Index of new symbols in 1.0</title>
<xi:include href="xml/api-index-1.0.xml"><xi:fallback /></xi:include>
- </index>
+ </index>-->
<!--<index id="deprecated-api-index" role="deprecated">
<title>Index of deprecated API</title>
<xi:include href="xml/api-index-deprecated.xml"><xi:fallback /></xi:include>
diff --git a/src/libical-glib/tools/xml-parser.c b/src/libical-glib/tools/xml-parser.c
index a0175791..26652003 100644
--- a/src/libical-glib/tools/xml-parser.c
+++ b/src/libical-glib/tools/xml-parser.c
@@ -308,7 +308,9 @@ gboolean parse_parameters(xmlNode * node, Method * method)
} else if (xmlStrcmp(attr->name, (xmlChar *) "owner_op") == 0) {
para->owner_op = (gchar *) xmlNodeListGetString(attr->doc, attr->children, 1);
} else {
- printf("The tag name of %s in parameter cannot be finished\n", (char *)attr->name);
+ fprintf(stderr,
+ "The tag name of %s in parameter cannot be finished\n",
+ (char *)attr->name);
}
}
method->parameters = g_list_append(method->parameters, para);