summaryrefslogtreecommitdiff
path: root/gtk2_ardour
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2010-04-01 01:07:24 +0000
committerCarl Hetherington <carl@carlh.net>2010-04-01 01:07:24 +0000
commit50dd880d7e75b49e7c80c79f32165a756839651c (patch)
treee4908863b98570709844a2ce536a44ee34479ac7 /gtk2_ardour
parentafc5e3bd0251dbcdbde27036569eb1acab026991 (diff)
No-op: rename a few variables and add/fix some comments.
git-svn-id: svn://localhost/ardour2/branches/3.0@6818 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour')
-rw-r--r--gtk2_ardour/automation_line.cc1
-rw-r--r--gtk2_ardour/port_matrix_component.cc3
-rw-r--r--gtk2_ardour/public_editor.h8
3 files changed, 6 insertions, 6 deletions
diff --git a/gtk2_ardour/automation_line.cc b/gtk2_ardour/automation_line.cc
index 2bec4528ec..844063a227 100644
--- a/gtk2_ardour/automation_line.cc
+++ b/gtk2_ardour/automation_line.cc
@@ -625,7 +625,6 @@ struct ControlPointSorter
};
/** Common parts of starting a drag.
- * @param d Description of the drag.
* @param x Starting x position in units, or 0 if x is being ignored.
* @param fraction Starting y position (as a fraction of the track height, where 0 is the bottom and 1 the top)
*/
diff --git a/gtk2_ardour/port_matrix_component.cc b/gtk2_ardour/port_matrix_component.cc
index f728f7bd85..9652a38f21 100644
--- a/gtk2_ardour/port_matrix_component.cc
+++ b/gtk2_ardour/port_matrix_component.cc
@@ -24,7 +24,8 @@
using namespace std;
/** Constructor.
- * @param p Port matrix that we're in.
+ * @param m Port matrix that we're in.
+ * @param b Port matrix body that we're in.
*/
PortMatrixComponent::PortMatrixComponent (PortMatrix* m, PortMatrixBody* b)
: _matrix (m),
diff --git a/gtk2_ardour/public_editor.h b/gtk2_ardour/public_editor.h
index d84cf589fb..fe20729b34 100644
--- a/gtk2_ardour/public_editor.h
+++ b/gtk2_ardour/public_editor.h
@@ -143,7 +143,7 @@ class PublicEditor : public Gtk::Window, public PBD::StatefulDestructible {
/** Set the mouse mode (gain, object, range, timefx etc.)
* @param m Mouse mode (defined in editing_syms.h)
* @param force Perform the effects of the change even if no change is required
- * (ie even if the current mouse mode is equal to \ref m)
+ * (ie even if the current mouse mode is equal to @param m)
*/
virtual void set_mouse_mode (Editing::MouseMode m, bool force = false) = 0;
@@ -173,9 +173,9 @@ class PublicEditor : public Gtk::Window, public PBD::StatefulDestructible {
*/
virtual bool sound_notes () const = 0;
- /** Possibly start the audition of a region. If \ref r is 0, or not an AudioRegion
- * any current audition is cancelled. If we are currently auditioning \ref r,
- * the audition will be cancelled. Otherwise an audition of \ref r will start.
+ /** Possibly start the audition of a region. If @param r is 0, or not an AudioRegion
+ * any current audition is cancelled. If we are currently auditioning @param r,
+ * the audition will be cancelled. Otherwise an audition of @param r will start.
* \param r Region to consider.
*/
virtual void consider_auditioning (boost::shared_ptr<ARDOUR::Region> r) = 0;