summaryrefslogtreecommitdiff
path: root/gtk2_ardour/imageframe_time_axis_view.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2006-05-26 22:30:54 +0000
committerDavid Robillard <d@drobilla.net>2006-05-26 22:30:54 +0000
commit0c1b9afc634d098ac6029acb3508d25823d0fc14 (patch)
tree0e09b9b277b0e8c62a24e57de2039119586343bf /gtk2_ardour/imageframe_time_axis_view.h
parent5bc0351635d49a5e7d7fdf129df842a247ffad99 (diff)
- Documentation fixes
- Fixed boolean return values in libmidi++ to return bool instead of int git-svn-id: svn://localhost/trunk/ardour2midi@538 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/imageframe_time_axis_view.h')
-rw-r--r--gtk2_ardour/imageframe_time_axis_view.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/gtk2_ardour/imageframe_time_axis_view.h b/gtk2_ardour/imageframe_time_axis_view.h
index d51901d4e0..f9487af058 100644
--- a/gtk2_ardour/imageframe_time_axis_view.h
+++ b/gtk2_ardour/imageframe_time_axis_view.h
@@ -87,7 +87,7 @@ class ImageFrameTimeAxisView : public sigc::trackable
*
* @param height the new height
*/
- int set_height(gdouble) ;
+ int set_height(gdouble height) ;
/**
* Sets the position of this view helper on the canvas
@@ -117,7 +117,7 @@ class ImageFrameTimeAxisView : public sigc::trackable
*
* @param color the new base color
*/
- void apply_color (Gdk::Color&) ;
+ void apply_color (Gdk::Color& color) ;
//---------------------------------------------------------------------------------------//
// Child ImageFrameTimeAxisGroup Accessors/Mutators
@@ -152,6 +152,7 @@ class ImageFrameTimeAxisView : public sigc::trackable
* Removes the specified ImageFrameTimeAxisGroup from the list of ImageFrameTimeAxisGroups upon this TimeAxis.
*
* @param iftag the ImageFrameView to remove
+ * @param src the identity of the object that initiated the change
*/
void remove_imageframe_group(ImageFrameTimeAxisGroup* iftag, void* src) ;
@@ -162,7 +163,7 @@ class ImageFrameTimeAxisView : public sigc::trackable
/**
* Sets the currently selected group upon this time axis
*
- * @param ifv the item to set selected
+ * @param iftag the item to set selected
*/
void set_selected_imageframe_group(ImageFrameTimeAxisGroup* iftag) ;