summaryrefslogtreecommitdiffstats
path: root/src/xml
diff options
context:
space:
mode:
authorJon A. Cruz <jon@joncruz.org>2011-10-03 07:24:15 +0000
committerJon A. Cruz <jon@joncruz.org>2011-10-03 07:24:15 +0000
commit6343a24c5cd0a998e00ae05fc6abe2081be21c71 (patch)
treea7dd4dab52017785c7fe15e79fb0b2836ff8e95a /src/xml
parentAnother minor pass of Doxygen cleanup. (diff)
downloadinkscape-6343a24c5cd0a998e00ae05fc6abe2081be21c71.tar.gz
inkscape-6343a24c5cd0a998e00ae05fc6abe2081be21c71.zip
Doxygen cleanup.
(bzr r10660)
Diffstat (limited to 'src/xml')
-rw-r--r--src/xml/croco-node-iface.cpp3
-rw-r--r--src/xml/log-builder.cpp5
-rw-r--r--src/xml/repr-util.cpp12
-rw-r--r--src/xml/simple-document.cpp5
-rw-r--r--src/xml/simple-node.cpp5
5 files changed, 16 insertions, 14 deletions
diff --git a/src/xml/croco-node-iface.cpp b/src/xml/croco-node-iface.cpp
index afea4abba..72bcba7f3 100644
--- a/src/xml/croco-node-iface.cpp
+++ b/src/xml/croco-node-iface.cpp
@@ -1,4 +1,3 @@
-
#include <cstring>
#include <string>
#include <glib/gstrfuncs.h>
@@ -46,7 +45,7 @@ static gboolean is_element_node(CRXMLNodePtr n) { return static_cast<Node const
}
/**
- * @brief Interface for XML nodes used by libcroco
+ * Interface for XML nodes used by libcroco.
*
* This structure defines operations on Inkscape::XML::Node used by the libcroco
* CSS parsing library.
diff --git a/src/xml/log-builder.cpp b/src/xml/log-builder.cpp
index 951cd4029..2cbdcfacf 100644
--- a/src/xml/log-builder.cpp
+++ b/src/xml/log-builder.cpp
@@ -1,5 +1,6 @@
-/** @file
- * @brief Object building an event log
+/**
+ * @file
+ * Object building an event log.
*/
/* Copyright 2005 MenTaLguY <mental@rydia.net>
*
diff --git a/src/xml/repr-util.cpp b/src/xml/repr-util.cpp
index db1d5591e..aa244d842 100644
--- a/src/xml/repr-util.cpp
+++ b/src/xml/repr-util.cpp
@@ -1,4 +1,5 @@
-/** \file
+/**
+ * @file
* Miscellaneous helpers for reprs.
*/
@@ -404,7 +405,7 @@ int sp_repr_compare_position(Inkscape::XML::Node const *first, Inkscape::XML::No
}
/**
- * @brief Find an element node using an unique attribute
+ * Find an element node using an unique attribute.
*
* This function returns the first child of the specified node that has the attribute
* @c key equal to @c value. Note that this function does not recurse.
@@ -414,10 +415,9 @@ int sp_repr_compare_position(Inkscape::XML::Node const *first, Inkscape::XML::No
* @param value The value of the attribute to look for
* @relatesalso Inkscape::XML::Node
*/
-Inkscape::XML::Node *
-sp_repr_lookup_child(Inkscape::XML::Node *repr,
- gchar const *key,
- gchar const *value)
+Inkscape::XML::Node *sp_repr_lookup_child(Inkscape::XML::Node *repr,
+ gchar const *key,
+ gchar const *value)
{
g_return_val_if_fail(repr != NULL, NULL);
for ( Inkscape::XML::Node *child = repr->firstChild() ; child ; child = child->next() ) {
diff --git a/src/xml/simple-document.cpp b/src/xml/simple-document.cpp
index 0287c4458..bae28e4b4 100644
--- a/src/xml/simple-document.cpp
+++ b/src/xml/simple-document.cpp
@@ -1,5 +1,6 @@
-/** @file
- * @brief Garbage collected XML document implementation
+/**
+ * @file
+ * Garbage collected XML document implementation.
*/
/* Copyright 2004-2005 MenTaLguY <mental@rydia.net>
*
diff --git a/src/xml/simple-node.cpp b/src/xml/simple-node.cpp
index b7c0c34ed..792706a18 100644
--- a/src/xml/simple-node.cpp
+++ b/src/xml/simple-node.cpp
@@ -1,5 +1,6 @@
-/** @file
- * @brief Garbage collected XML node implementation
+/**
+ * @file
+ * Garbage collected XML node implementation.
*/
/* Copyright 2003-2005 MenTaLguY <mental@rydia.net>
* Copyright 2003 Nathan Hurst