summaryrefslogtreecommitdiff
path: root/gtk2_ardour/region_editor.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2011-05-30 13:54:44 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2011-05-30 13:54:44 +0000
commitd4d5b30aebb8a54358bfb203c84cfd641bff79f3 (patch)
treed25b48b46b83c35d143ae5497d42a315ede7378c /gtk2_ardour/region_editor.cc
parent6eba90adb3ef9726ef277e9abeeede0dec9b8454 (diff)
remove unused and useless "src" argument for a number of Region property modifying methods
git-svn-id: svn://localhost/ardour2/branches/3.0@9632 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/region_editor.cc')
-rwxr-xr-xgtk2_ardour/region_editor.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk2_ardour/region_editor.cc b/gtk2_ardour/region_editor.cc
index 5e9f13db43..1118ac977f 100755
--- a/gtk2_ardour/region_editor.cc
+++ b/gtk2_ardour/region_editor.cc
@@ -278,7 +278,7 @@ RegionEditor::position_clock_changed ()
if (pl) {
_region->clear_changes ();
- _region->set_position (position_clock.current_time(), this);
+ _region->set_position (position_clock.current_time());
_session->add_command(new StatefulDiffCommand (_region));
}
@@ -294,7 +294,7 @@ RegionEditor::end_clock_changed ()
if (pl) {
_region->clear_changes ();
- _region->trim_end (end_clock.current_time(), this);
+ _region->trim_end (end_clock.current_time());
_session->add_command(new StatefulDiffCommand (_region));
}
@@ -314,7 +314,7 @@ RegionEditor::length_clock_changed ()
if (pl) {
_region->clear_changes ();
- _region->trim_end (_region->position() + frames - 1, this);
+ _region->trim_end (_region->position() + frames - 1);
_session->add_command(new StatefulDiffCommand (_region));
}