summaryrefslogtreecommitdiff
path: root/gtk2_ardour/rhythm_ferret.cc
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-06-01 17:00:29 +0000
committerDavid Robillard <d@drobilla.net>2011-06-01 17:00:29 +0000
commited626628b54e67dd9621c08d82a42afaed00c7ac (patch)
treecf621db4c44f07f75a6e6a3fb7f572cd2c3622cd /gtk2_ardour/rhythm_ferret.cc
parenta473d630eb165272992e90f8d854b1d66ec0be63 (diff)
Delete trailing whitespace
git-svn-id: svn://localhost/ardour2/branches/3.0@9656 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/rhythm_ferret.cc')
-rw-r--r--gtk2_ardour/rhythm_ferret.cc26
1 files changed, 13 insertions, 13 deletions
diff --git a/gtk2_ardour/rhythm_ferret.cc b/gtk2_ardour/rhythm_ferret.cc
index 8845a29313..7d7250d055 100644
--- a/gtk2_ardour/rhythm_ferret.cc
+++ b/gtk2_ardour/rhythm_ferret.cc
@@ -113,7 +113,7 @@ RhythmFerret::RhythmFerret (Editor& e)
t->attach (peak_picker_threshold_scale, 1, 2, n, n + 1, FILL);
t->attach (*manage (new Label (_("dB"))), 2, 3, n, n + 1, FILL);
++n;
-
+
t->attach (*manage (new Label (_("Silence threshold"), 1, 0.5)), 0, 1, n, n + 1, FILL);
t->attach (silence_threshold_scale, 1, 2, n, n + 1, FILL);
t->attach (*manage (new Label (_("dB"))), 2, 3, n, n + 1, FILL);
@@ -145,7 +145,7 @@ void
RhythmFerret::analysis_mode_changed ()
{
bool const perc = get_analysis_mode() == PercussionOnset;
-
+
trigger_gap_spinner.set_sensitive (!perc);
detection_threshold_scale.set_sensitive (perc);
sensitivity_scale.set_sensitive (perc);
@@ -209,7 +209,7 @@ RhythmFerret::run_analysis ()
default:
break;
}
-
+
(*i)->region()->set_transients (current_results);
current_results.clear();
}
@@ -236,7 +236,7 @@ RhythmFerret::run_percussion_onset_analysis (boost::shared_ptr<Readable> readabl
results.insert (results.end(), these_results.begin(), these_results.end());
these_results.clear ();
-
+
t.update_positions (readable.get(), i, results);
}
@@ -254,10 +254,10 @@ RhythmFerret::get_note_onset_function ()
return n;
}
}
-
+
fatal << string_compose (_("programming error: %1 (%2)"), X_("illegal note onset function string"), txt)
<< endmsg;
-
+
/*NOTREACHED*/
return -1;
}
@@ -330,18 +330,18 @@ RhythmFerret::do_split_action ()
being considered)
*/
RegionSelection regions = editor.get_regions_from_selection();
-
+
if (regions.empty()) {
return;
}
-
+
editor.EditorFreeze(); /* Emit signal */
_session->begin_reversible_command (_("split regions (rhythm ferret)"));
-
+
/* Merge the transient positions for regions in consideration */
AnalysisFeatureList merged_features;
-
+
for (RegionSelection::iterator i = regions.begin(); i != regions.end(); ++i) {
AnalysisFeatureList features;
@@ -367,7 +367,7 @@ RhythmFerret::do_split_action ()
}
_session->commit_reversible_command ();
-
+
editor.EditorThaw(); /* Emit signal */
}
@@ -390,11 +390,11 @@ void
RhythmFerret::clear_transients ()
{
current_results.clear ();
-
+
for (RegionSelection::iterator i = regions_with_transients.begin(); i != regions_with_transients.end(); ++i) {
(*i)->region()->set_transients (current_results);
}
-
+
regions_with_transients.clear ();
}