[libxml++] Add @newin{2, 36} to some new functions where it's missing.



commit c32f340e9c78c4cf795df12c67432c3c77cedc15
Author: Kjell Ahlstedt <kjell ahlstedt bredband net>
Date:   Wed Feb 15 10:31:38 2012 +0100

    Add @newin{2,36} to some new functions where it's missing.
    
    * libxml++/exceptions/exception.h: Add @newin{2,36} to format_xml_error() and
    format_xml_parser_error().
    * libxml++/parsers/parser.h: Add @newin{2,36} to [set|get]_throw_messages().
    Bug #304020.

 ChangeLog                       |    9 +++++++++
 libxml++/exceptions/exception.h |    6 ++++++
 libxml++/parsers/parser.h       |    6 ++++++
 3 files changed, 21 insertions(+), 0 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
index 26ebf4e..0bc2236 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2012-02-15  Kjell Ahlstedt  <kjell ahlstedt bredband net>
+
+	Add @newin{2,36} to some new functions where it's missing.
+
+	* libxml++/exceptions/exception.h: Add @newin{2,36} to format_xml_error() and
+	format_xml_parser_error().
+	* libxml++/parsers/parser.h: Add @newin{2,36} to [set|get]_throw_messages().
+	Bug #304020.
+
 2012-02-10  Kjell Ahlstedt  <kjell ahlstedt bredband net>
 
 	Make the schema validation example program work with no arguments.
diff --git a/libxml++/exceptions/exception.h b/libxml++/exceptions/exception.h
index 0c2dd05..b3b129e 100644
--- a/libxml++/exceptions/exception.h
+++ b/libxml++/exceptions/exception.h
@@ -52,6 +52,9 @@ private:
 };
 
 /** Format an _xmlError struct into a text string, suitable for printing.
+ *
+ * @newin{2,36}
+ *
  * @param error Pointer to an _xmlError struct or <tt>0</tt>. If <tt>0</tt>,
  *              the error returned by xmlGetLastError() is used.
  * @returns A formatted text string. If the error struct does not contain an
@@ -60,6 +63,9 @@ private:
 Glib::ustring format_xml_error(const _xmlError* error = 0);
 
 /** Format a parser error into a text string, suitable for printing.
+ *
+ * @newin{2,36}
+ *
  * @param parser_context Pointer to an _xmlParserCtxt struct.
  * @returns A formatted text string. If the parser context does not contain an
  *          error (parser_context->lastError.code == XML_ERR_OK), an empty
diff --git a/libxml++/parsers/parser.h b/libxml++/parsers/parser.h
index b6558cd..f2c2f3f 100644
--- a/libxml++/parsers/parser.h
+++ b/libxml++/parsers/parser.h
@@ -68,11 +68,17 @@ public:
    * The default, if set_throw_messages() is not called, is to collect and throw
    * only messages from validation. Other messages are written to stderr.
    * This is for backward compatibility, and may change in the future.
+   *
+   * @newin{2,36}
+   *
    * @param val Whether messages will be collected and thrown in an exception.
    */
   void set_throw_messages(bool val = true);
 
   /** See set_throw_messages().
+   *
+   * @newin{2,36}
+   *
    * @returns Whether messages will be collected and thrown in an exception.
    *          The default with only validation messages thrown is returned as false.
    */



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]