summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2019-12-25 17:52:02 +0100
committerRobin Gareus <robin@gareus.org>2019-12-25 17:52:02 +0100
commitc9c8cd2777706d15e2e9df56dabc15b7f472dfcb (patch)
treed457ab2a6b61ae67ef3ab404cc28e17774974659
parent24b46d1f75f519667979c7e51aaecedb7c6099f6 (diff)
NO-OP: comment signal emission
-rw-r--r--libs/ardour/region_factory.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/libs/ardour/region_factory.cc b/libs/ardour/region_factory.cc
index 3c90a8a5c2..80a09b8a5c 100644
--- a/libs/ardour/region_factory.cc
+++ b/libs/ardour/region_factory.cc
@@ -94,7 +94,7 @@ RegionFactory::create (boost::shared_ptr<const Region> region, bool announce, bo
/* pure copy constructor - no property list */
if (announce) {
map_add (ret);
- CheckNewRegion (ret);
+ CheckNewRegion (ret); /* EMIT SIGNAL */
}
}
@@ -135,7 +135,7 @@ RegionFactory::create (boost::shared_ptr<Region> region, const PropertyList& pli
if (announce) {
map_add (ret);
- CheckNewRegion (ret);
+ CheckNewRegion (ret); /* EMIT SIGNAL */
}
}
@@ -176,7 +176,7 @@ RegionFactory::create (boost::shared_ptr<Region> region, MusicSample offset, con
if (announce) {
map_add (ret);
- CheckNewRegion (ret);
+ CheckNewRegion (ret); /* EMIT SIGNAL */
}
}
@@ -217,7 +217,7 @@ RegionFactory::create (boost::shared_ptr<Region> region, const SourceList& srcs,
if (announce) {
map_add (ret);
- CheckNewRegion (ret);
+ CheckNewRegion (ret); /* EMIT SIGNAL */
}
}
@@ -261,7 +261,7 @@ RegionFactory::create (const SourceList& srcs, const PropertyList& plist, bool a
if (announce) {
map_add (ret);
- CheckNewRegion (ret);
+ CheckNewRegion (ret); /* EMIT SIGNAL */
}
}
@@ -306,7 +306,7 @@ RegionFactory::create (SourceList& srcs, const XMLNode& node)
description is coming from XML.
*/
- CheckNewRegion (ret);
+ CheckNewRegion (ret); /* EMIT SIGNAL */
}
}