diff options
-rw-r--r-- | doc/reference.doxygen.in | 2 | ||||
-rw-r--r-- | lv2/lv2plug.in/ns/ext/atom/atom-test.c | 2 | ||||
-rw-r--r-- | lv2/lv2plug.in/ns/ext/atom/atom.ttl | 2 | ||||
-rw-r--r-- | lv2/lv2plug.in/ns/ext/atom/forge.h | 2 | ||||
-rw-r--r-- | lv2/lv2plug.in/ns/ext/atom/util.h (renamed from lv2/lv2plug.in/ns/ext/atom/atom-helpers.h) | 2 | ||||
-rw-r--r-- | plugins/eg-sampler.lv2/sampler.c | 2 | ||||
-rw-r--r-- | plugins/eg-sampler.lv2/sampler_ui.c | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/doc/reference.doxygen.in b/doc/reference.doxygen.in index 16a35c4..cbf88fe 100644 --- a/doc/reference.doxygen.in +++ b/doc/reference.doxygen.in @@ -566,9 +566,9 @@ WARN_LOGFILE = INPUT = \ @LV2_SRCDIR@/doc/mainpage.dox \ - @LV2_SRCDIR@/lv2/lv2plug.in/ns/ext/atom/atom-helpers.h \ @LV2_SRCDIR@/lv2/lv2plug.in/ns/ext/atom/atom.h \ @LV2_SRCDIR@/lv2/lv2plug.in/ns/ext/atom/forge.h \ + @LV2_SRCDIR@/lv2/lv2plug.in/ns/ext/atom/util.h \ @LV2_SRCDIR@/lv2/lv2plug.in/ns/ext/contexts/contexts.h \ @LV2_SRCDIR@/lv2/lv2plug.in/ns/ext/data-access/data-access.h \ @LV2_SRCDIR@/lv2/lv2plug.in/ns/ext/dynmanifest/dynmanifest.h \ diff --git a/lv2/lv2plug.in/ns/ext/atom/atom-test.c b/lv2/lv2plug.in/ns/ext/atom/atom-test.c index 2011f68..c81f581 100644 --- a/lv2/lv2plug.in/ns/ext/atom/atom-test.c +++ b/lv2/lv2plug.in/ns/ext/atom/atom-test.c @@ -18,8 +18,8 @@ #include <stdio.h> #include <stdlib.h> -#include "lv2/lv2plug.in/ns/ext/atom/atom-helpers.h" #include "lv2/lv2plug.in/ns/ext/atom/forge.h" +#include "lv2/lv2plug.in/ns/ext/atom/util.h" char** uris = NULL; size_t n_uris = 0; diff --git a/lv2/lv2plug.in/ns/ext/atom/atom.ttl b/lv2/lv2plug.in/ns/ext/atom/atom.ttl index 677a159..2e82e32 100644 --- a/lv2/lv2plug.in/ns/ext/atom/atom.ttl +++ b/lv2/lv2plug.in/ns/ext/atom/atom.ttl @@ -27,7 +27,7 @@ doap:name "LV2 Atom" ; doap:shortdesc "A generic value container and several data types." ; doap:license <http://opensource.org/licenses/isc> ; - rdfs:seeAlso <atom-helpers.h> , + rdfs:seeAlso <util.h> , <forge.h> ; doap:release [ doap:revision "0.4" ; diff --git a/lv2/lv2plug.in/ns/ext/atom/forge.h b/lv2/lv2plug.in/ns/ext/atom/forge.h index d13f549..52ba635 100644 --- a/lv2/lv2plug.in/ns/ext/atom/forge.h +++ b/lv2/lv2plug.in/ns/ext/atom/forge.h @@ -43,8 +43,8 @@ #include <assert.h> -#include "lv2/lv2plug.in/ns/ext/atom/atom-helpers.h" #include "lv2/lv2plug.in/ns/ext/atom/atom.h" +#include "lv2/lv2plug.in/ns/ext/atom/util.h" #include "lv2/lv2plug.in/ns/ext/urid/urid.h" #ifdef __cplusplus diff --git a/lv2/lv2plug.in/ns/ext/atom/atom-helpers.h b/lv2/lv2plug.in/ns/ext/atom/util.h index e6ecd9c..6ba792c 100644 --- a/lv2/lv2plug.in/ns/ext/atom/atom-helpers.h +++ b/lv2/lv2plug.in/ns/ext/atom/util.h @@ -15,7 +15,7 @@ */ /** - @file atom-helpers.h Helper functions for the LV2 Atom extension. + @file util.h Helper functions for the LV2 Atom extension. Note these functions are all static inline, do not take their address. diff --git a/plugins/eg-sampler.lv2/sampler.c b/plugins/eg-sampler.lv2/sampler.c index d098114..34ea5e0 100644 --- a/plugins/eg-sampler.lv2/sampler.c +++ b/plugins/eg-sampler.lv2/sampler.c @@ -39,8 +39,8 @@ #include <sndfile.h> -#include "lv2/lv2plug.in/ns/ext/atom/atom-helpers.h" #include "lv2/lv2plug.in/ns/ext/atom/forge.h" +#include "lv2/lv2plug.in/ns/ext/atom/util.h" #include "lv2/lv2plug.in/ns/ext/message/message.h" #include "lv2/lv2plug.in/ns/ext/state/state.h" #include "lv2/lv2plug.in/ns/ext/urid/urid.h" diff --git a/plugins/eg-sampler.lv2/sampler_ui.c b/plugins/eg-sampler.lv2/sampler_ui.c index 619db50..cdc11b3 100644 --- a/plugins/eg-sampler.lv2/sampler_ui.c +++ b/plugins/eg-sampler.lv2/sampler_ui.c @@ -23,7 +23,7 @@ #include <gtk/gtk.h> -#include "lv2/lv2plug.in/ns/ext/atom/atom-helpers.h" +#include "lv2/lv2plug.in/ns/ext/atom/util.h" #include "lv2/lv2plug.in/ns/ext/atom/atom.h" #include "lv2/lv2plug.in/ns/ext/atom/forge.h" #include "lv2/lv2plug.in/ns/ext/message/message.h" |