summaryrefslogtreecommitdiff
path: root/libs/ardour
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2020-01-22 15:03:24 -0700
committerPaul Davis <paul@linuxaudiosystems.com>2020-01-23 14:25:38 -0700
commitef12a4f5a97380fbebd74c3d21de720a1d2ad323 (patch)
tree1bd49a4b4ccd7b446c53e7e5ca1d738b9fedac14 /libs/ardour
parent215d5d556fdb8ab95c044586e6eb803501bbe86e (diff)
NOOP: whitespace/indent fixes from emacs
Diffstat (limited to 'libs/ardour')
-rw-r--r--libs/ardour/region.cc17
1 files 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<const Region> 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<const Region> 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;
}
-