diff options
author | David Robillard <d@drobilla.net> | 2019-04-27 15:11:49 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-04-27 17:20:53 +0200 |
commit | 0eeb5ce7786913e132c28d2f55e64d044342aaf2 (patch) | |
tree | cc8f9abb57f771f961c8e43cb2f2eb32298d5080 /lv2/resize-port | |
parent | 26aeba2f9e9441ef916c349a751226f0e2292606 (diff) | |
download | lv2-0eeb5ce7786913e132c28d2f55e64d044342aaf2.tar.xz |
Fix incorrect prefixes in URI define comments
Diffstat (limited to 'lv2/resize-port')
-rw-r--r-- | lv2/resize-port/resize-port.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lv2/resize-port/resize-port.h b/lv2/resize-port/resize-port.h index 34bfe61..08f82f1 100644 --- a/lv2/resize-port/resize-port.h +++ b/lv2/resize-port/resize-port.h @@ -32,9 +32,9 @@ #define LV2_RESIZE_PORT_URI "http://lv2plug.in/ns/ext/resize-port" ///< http://lv2plug.in/ns/ext/resize-port #define LV2_RESIZE_PORT_PREFIX LV2_RESIZE_PORT_URI "#" ///< http://lv2plug.in/ns/ext/resize-port# -#define LV2_RESIZE_PORT__asLargeAs LV2_RESIZE_PORT_PREFIX "asLargeAs" ///< http://lv2plug.in/ns/ext/port#asLargeAs -#define LV2_RESIZE_PORT__minimumSize LV2_RESIZE_PORT_PREFIX "minimumSize" ///< http://lv2plug.in/ns/ext/port#minimumSize -#define LV2_RESIZE_PORT__resize LV2_RESIZE_PORT_PREFIX "resize" ///< http://lv2plug.in/ns/ext/port#resize +#define LV2_RESIZE_PORT__asLargeAs LV2_RESIZE_PORT_PREFIX "asLargeAs" ///< http://lv2plug.in/ns/ext/resize-port#asLargeAs +#define LV2_RESIZE_PORT__minimumSize LV2_RESIZE_PORT_PREFIX "minimumSize" ///< http://lv2plug.in/ns/ext/resize-port#minimumSize +#define LV2_RESIZE_PORT__resize LV2_RESIZE_PORT_PREFIX "resize" ///< http://lv2plug.in/ns/ext/resize-port#resize #ifdef __cplusplus extern "C" { |