summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-04-23 00:58:50 +0000
committerDavid Robillard <d@drobilla.net>2007-04-23 00:58:50 +0000
commitdface705716df0f1f959df46bfdebb41e4282a01 (patch)
treed29584913b25fbbff4294b77d5ad65cda9fe92c9
parent2066b51c243763677dfdbc6a9db8bccc10bbfe36 (diff)
downloadlilv-dface705716df0f1f959df46bfdebb41e4282a01.tar.gz
lilv-dface705716df0f1f959df46bfdebb41e4282a01.tar.bz2
lilv-dface705716df0f1f959df46bfdebb41e4282a01.zip
Documention updates/fixes.
git-svn-id: http://svn.drobilla.net/lad/slv2@471 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r--doc/reference.doxygen.in6
-rw-r--r--slv2/pluginclasses.h2
-rw-r--r--slv2/plugininstance.h2
-rw-r--r--slv2/plugins.h2
-rw-r--r--slv2/world.h2
-rw-r--r--src/world.c2
6 files changed, 9 insertions, 7 deletions
diff --git a/doc/reference.doxygen.in b/doc/reference.doxygen.in
index ac744a9..a899bd3 100644
--- a/doc/reference.doxygen.in
+++ b/doc/reference.doxygen.in
@@ -422,8 +422,10 @@ WARN_LOGFILE =
INPUT = @top_srcdir@/doc/mainpage.dox \
@top_srcdir@/slv2/types.h \
@top_srcdir@/slv2/world.h \
- @top_srcdir@/slv2/pluginlist.h \
- @top_srcdir@/slv2/stringlist.h \
+ @top_srcdir@/slv2/plugins.h \
+ @top_srcdir@/slv2/strings.h \
+ @top_srcdir@/slv2/pluginclass.h \
+ @top_srcdir@/slv2/pluginclasses.h \
@top_srcdir@/slv2/plugin.h \
@top_srcdir@/slv2/port.h \
@top_srcdir@/slv2/plugininstance.h \
diff --git a/slv2/pluginclasses.h b/slv2/pluginclasses.h
index 0c2ba1b..b407ede 100644
--- a/slv2/pluginclasses.h
+++ b/slv2/pluginclasses.h
@@ -25,7 +25,7 @@
extern "C" {
#endif
-/** \defgroup plugin_classes Plugin classes (categories)
+/** \defgroup plugin_classes Plugin classes
*
* @{
*/
diff --git a/slv2/plugininstance.h b/slv2/plugininstance.h
index 0132dfe..866d1e0 100644
--- a/slv2/plugininstance.h
+++ b/slv2/plugininstance.h
@@ -28,7 +28,7 @@ extern "C" {
#include <slv2/plugin.h>
#include <slv2/port.h>
-/** \defgroup lib Shared library access
+/** \defgroup lib Plugin library access
*
* An SLV2Instance is an instantiated SLV2Plugin (eg a loaded dynamic
* library). These functions interact with the binary library code only,
diff --git a/slv2/plugins.h b/slv2/plugins.h
index c544ba1..2101eee 100644
--- a/slv2/plugins.h
+++ b/slv2/plugins.h
@@ -25,7 +25,7 @@
extern "C" {
#endif
-/** \defgroup plugins Plugin lists
+/** \defgroup plugins Collections of plugins
*
* These functions work with lists of plugins which come from an
* SLV2World. These lists contain only a weak reference to an LV2 plugin
diff --git a/slv2/world.h b/slv2/world.h
index 0bef69e..6cd1402 100644
--- a/slv2/world.h
+++ b/slv2/world.h
@@ -26,7 +26,7 @@
extern "C" {
#endif
-/** \defgroup world Library context, data loading, etc.
+/** \defgroup world Library
*
* The "world" represents all library state, and the data found in bundles'
* manifest.ttl (ie it is an in-memory index of all things LV2 found).
diff --git a/src/world.c b/src/world.c
index 8178403..9b9b5fa 100644
--- a/src/world.c
+++ b/src/world.c
@@ -197,7 +197,7 @@ slv2_world_load_plugin_classes(SLV2World world)
librdf_node* label_node = librdf_query_results_get_binding_value(results, 2);
const char* label = (const char*)librdf_node_get_literal_value(label_node);
- printf("CLASS: %s / %s\n", librdf_uri_as_string(parent_uri), librdf_uri_as_string(class_uri));
+ //printf("CLASS: %s / %s\n", librdf_uri_as_string(parent_uri), librdf_uri_as_string(class_uri));
SLV2PluginClass plugin_class = slv2_plugin_class_new(world,
(const char*)librdf_uri_as_string(parent_uri),