summaryrefslogtreecommitdiffstats
path: root/src/rdf.cpp
diff options
context:
space:
mode:
authorJon A. Cruz <jon@joncruz.org>2011-10-03 03:44:17 +0000
committerJon A. Cruz <jon@joncruz.org>2011-10-03 03:44:17 +0000
commit20097d47e6945bceb57d2335d23fe764f493ab59 (patch)
tree47a1f62624d42e0302c2c370c1c23b2670e814ed /src/rdf.cpp
parentNext pass of doxygen @brief cleanup. (diff)
downloadinkscape-20097d47e6945bceb57d2335d23fe764f493ab59.tar.gz
inkscape-20097d47e6945bceb57d2335d23fe764f493ab59.zip
Another minor pass of Doxygen cleanup.
(bzr r10659)
Diffstat (limited to '')
-rw-r--r--src/rdf.cpp21
1 files changed, 11 insertions, 10 deletions
diff --git a/src/rdf.cpp b/src/rdf.cpp
index cabbaaed3..95f9fdd3b 100644
--- a/src/rdf.cpp
+++ b/src/rdf.cpp
@@ -1,5 +1,5 @@
/** @file
- * @brief RDF manipulation functions
+ * RDF manipulation functions.
*
* @todo move these to xml/ instead of dialogs/
*/
@@ -324,10 +324,11 @@ public:
static void setDefaults( SPDocument * doc );
/**
- * \brief Pull the text out of an RDF entity, depends on how it's stored
- * \return A pointer to the entity's static contents as a string
- * \param repr The XML element to extract from
- * \param entity The desired RDF/Work entity
+ * Pull the text out of an RDF entity, depends on how it's stored.
+ *
+ * @return A pointer to the entity's static contents as a string
+ * @param repr The XML element to extract from
+ * @param entity The desired RDF/Work entity
*
*/
static const gchar *getReprText( Inkscape::XML::Node const * repr, struct rdf_work_entity_t const & entity );
@@ -342,13 +343,13 @@ public:
};
/**
- * \brief Retrieves a known RDF/Work entity by name
- * \return A pointer to an RDF/Work entity
- * \param name The desired RDF/Work entity
+ * Retrieves a known RDF/Work entity by name.
+ *
+ * @return A pointer to an RDF/Work entity
+ * @param name The desired RDF/Work entity
*
*/
-struct rdf_work_entity_t *
-rdf_find_entity(gchar const * name)
+struct rdf_work_entity_t *rdf_find_entity(gchar const * name)
{
struct rdf_work_entity_t *entity;
for (entity=rdf_work_entities; entity->name; entity++) {