summaryrefslogtreecommitdiffstats
path: root/slv2
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2008-07-30 22:01:22 +0000
committerDavid Robillard <d@drobilla.net>2008-07-30 22:01:22 +0000
commit889752ef6e0aa01270e6cdd4349cb9e3e859cf82 (patch)
tree3245a632306ca242489a4d85455896e8aacbdcc6 /slv2
parent2cd12ad217c63068c0e33cd70e80ee6344af3216 (diff)
downloadlilv-889752ef6e0aa01270e6cdd4349cb9e3e859cf82.tar.gz
lilv-889752ef6e0aa01270e6cdd4349cb9e3e859cf82.tar.bz2
lilv-889752ef6e0aa01270e6cdd4349cb9e3e859cf82.zip
Fix type passed to ScalePoints functions (actually just an opaque pointer, aesthetic only).
git-svn-id: http://svn.drobilla.net/lad/slv2@1316 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'slv2')
-rw-r--r--slv2/scalepoints.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/slv2/scalepoints.h b/slv2/scalepoints.h
index 88e08b4..c8fee6a 100644
--- a/slv2/scalepoints.h
+++ b/slv2/scalepoints.h
@@ -35,22 +35,22 @@ extern "C" {
*/
-/** Allocate a new, empty SLV2Values
+/** Allocate a new, empty SLV2ScalePoints
*/
-SLV2Values
+SLV2ScalePoints
slv2_scale_points_new();
-/** Free an SLV2Values.
+/** Free an SLV2ScalePoints.
*/
void
-slv2_scale_points_free(SLV2Values);
+slv2_scale_points_free(SLV2ScalePoints);
/** Get the number of scale points in a collection.
*/
unsigned
-slv2_scale_points_size(SLV2Values points);
+slv2_scale_points_size(SLV2ScalePoints points);
/** Get the scale point at the given index in a collection.