From ef12a4f5a97380fbebd74c3d21de720a1d2ad323 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Wed, 22 Jan 2020 15:03:24 -0700 Subject: [PATCH] NOOP: whitespace/indent fixes from emacs --- libs/ardour/region.cc | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/libs/ardour/region.cc b/libs/ardour/region.cc index a2bee99a7f..026183addd 100644 --- a/libs/ardour/region.cc +++ b/libs/ardour/region.cc @@ -143,9 +143,9 @@ Region::make_property_quarks () Properties::layering_index.property_id = g_quark_from_static_string (X_("layering-index")); DEBUG_TRACE (DEBUG::Properties, string_compose ("quark for layering_index = %1\n", Properties::layering_index.property_id)); Properties::tags.property_id = g_quark_from_static_string (X_("tags")); - DEBUG_TRACE (DEBUG::Properties, string_compose ("quark for tags = %1\n", Properties::tags.property_id)); + DEBUG_TRACE (DEBUG::Properties, string_compose ("quark for tags = %1\n", Properties::tags.property_id)); Properties::contents.property_id = g_quark_from_static_string (X_("contents")); - DEBUG_TRACE (DEBUG::Properties, string_compose ("quark for contents = %1\n", Properties::contents.property_id)); + DEBUG_TRACE (DEBUG::Properties, string_compose ("quark for contents = %1\n", Properties::contents.property_id)); } void @@ -320,10 +320,10 @@ Region::Region (boost::shared_ptr other) /* sync pos is relative to start of file. our start-in-file is now zero, * so set our sync position to whatever the the difference between * _start and _sync_pos was in the other region. - * + * * result is that our new sync pos points to the same point in our source(s) * as the sync in the other region did in its source(s). - * + * * since we start at zero in our source(s), it is not possible to use a sync point that * is before the start. reset it to _start if that was true in the other region. */ @@ -346,7 +346,7 @@ Region::Region (boost::shared_ptr other) } /** Create a new Region from part of an existing one. - * + * * the start within \a other is given by \a offset * (i.e. relative to the start of \a other's sources, the start is \a offset + \a other.start() */ @@ -684,7 +684,7 @@ Region::set_position_internal (samplepos_t pos, bool allow_bbt_recompute, const /* check that the new _position wouldn't make the current * length impossible - if so, change the length. - * + * * XXX is this the right thing to do? */ if (max_samplepos - _length < _position) { @@ -737,7 +737,7 @@ Region::set_position_music_internal (double qn) /* check that the new _position wouldn't make the current * length impossible - if so, change the length. - * + * * XXX is this the right thing to do? */ if (max_samplepos - _length < _position) { @@ -764,7 +764,7 @@ Region::set_initial_position (samplepos_t pos) /* check that the new _position wouldn't make the current * length impossible - if so, change the length. - * + * * XXX is this the right thing to do? */ @@ -1998,4 +1998,3 @@ Region::latest_possible_sample () const return _position + (minlen - _start) - 1; } -