diff options
author | David Robillard <d@drobilla.net> | 2007-04-28 16:41:22 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-04-28 16:41:22 +0000 |
commit | 068bf99fb9ff1030d111a7506601d1f702857261 (patch) | |
tree | e6d5f6f8848908b2c328dfaa7f9e0f57058725a5 | |
parent | 1c4636a0387b560a0f680a1b84f4d9db2a8ff9a4 (diff) | |
download | lilv-068bf99fb9ff1030d111a7506601d1f702857261.tar.gz lilv-068bf99fb9ff1030d111a7506601d1f702857261.tar.bz2 lilv-068bf99fb9ff1030d111a7506601d1f702857261.zip |
Fixed more outdated reference to strings.h
git-svn-id: http://svn.drobilla.net/lad/slv2@478 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r-- | slv2/plugin.h | 2 | ||||
-rw-r--r-- | slv2/values.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/slv2/plugin.h b/slv2/plugin.h index c6090a6..fa43be0 100644 --- a/slv2/plugin.h +++ b/slv2/plugin.h @@ -27,7 +27,7 @@ extern "C" { #include <stdbool.h> #include <slv2/types.h> #include <slv2/port.h> -#include <slv2/strings.h> +#include <slv2/values.h> /** \defgroup data Plugin data access * diff --git a/slv2/values.h b/slv2/values.h index a8381cd..3a46583 100644 --- a/slv2/values.h +++ b/slv2/values.h @@ -26,9 +26,9 @@ extern "C" { #endif -/** \defgroup strings Collections of strings +/** \defgroup values Collections of values * - * SLV2Values is an ordered collection of strings which is fast for random + * SLV2Values is an ordered collection of typed values which is fast for random * access by index (i.e. a fancy array). * * @{ |