diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/BreadCrumbs.cpp | 8 | ||||
-rw-r--r-- | src/gui/RDFS.cpp | 2 | ||||
-rw-r--r-- | src/server/JackDriver.cpp | 2 | ||||
-rw-r--r-- | src/server/events/Delta.cpp | 2 |
4 files changed, 7 insertions, 7 deletions
diff --git a/src/gui/BreadCrumbs.cpp b/src/gui/BreadCrumbs.cpp index 041c3f51..46a0757a 100644 --- a/src/gui/BreadCrumbs.cpp +++ b/src/gui/BreadCrumbs.cpp @@ -77,7 +77,7 @@ BreadCrumbs::build(const raul::Path& path, b->set_view(view); } - // views are expensive, having two around for the same graph is a bug + // Views are expensive, having two around is a bug assert(b->view() == view); } else { @@ -89,7 +89,7 @@ BreadCrumbs::build(const raul::Path& path, _enable_signal = old_enable_signal; } else if (!_breadcrumbs.empty() && path.is_child_of(_full_path)) { - // Moving to a child of the full path, just append crumbs (preserve view cache) + // Moving to a child of the full path, append crumbs (preserve cache) string suffix = path.substr(_full_path.length()); while (suffix.length() > 0) { @@ -115,8 +115,8 @@ BreadCrumbs::build(const raul::Path& path, _breadcrumbs.back()->set_active(true); } else { - // Rebuild from scratch - // Getting here is bad unless absolutely necessary, since the GraphView cache is lost + /* Rebuild from scratch. Getting here is bad unless absolutely + necessary, since the GraphView cache is lost. */ _full_path = path; _active_path = path; diff --git a/src/gui/RDFS.cpp b/src/gui/RDFS.cpp index 23a9e768..3a277950 100644 --- a/src/gui/RDFS.cpp +++ b/src/gui/RDFS.cpp @@ -128,7 +128,7 @@ types(World& world, const std::shared_ptr<const client::ObjectModel>& model) const URI type(world.forge().str(t->second, false)); types.insert(type); if (world.uris().ingen_Graph == type) { - // Add lv2:Plugin as a type for graphs so plugin properties show up + // Add lv2:Plugin as a type so plugin properties show up types.insert(world.uris().lv2_Plugin); } } else { diff --git a/src/server/JackDriver.cpp b/src/server/JackDriver.cpp index b60fb5fa..32029c6e 100644 --- a/src/server/JackDriver.cpp +++ b/src/server/JackDriver.cpp @@ -90,7 +90,7 @@ JackDriver::attach(const std::string& server_name, } } - // Either server name not specified, or supplied server name does not exist + // Server name not specified, or that server doesn't exist // Connect to default server if (!_client) { if ((_client = jack_client_open(client_name.c_str(), JackNullOption, nullptr))) { diff --git a/src/server/events/Delta.cpp b/src/server/events/Delta.cpp index 88826a23..67319423 100644 --- a/src/server/events/Delta.cpp +++ b/src/server/events/Delta.cpp @@ -395,7 +395,7 @@ Delta::pre_process(PreProcessContext& ctx) if (key == uris.ingen_enabled) { if (value.type() == uris.forge.Bool) { op = SpecialType::ENABLE; - // FIXME: defer this until all other metadata has been processed + // FIXME: defer until all other data has been processed if (value.get<int32_t>() && !_graph->enabled()) { if (!(_compiled_graph = compile(*_engine.maid(), *_graph))) { _status = Status::COMPILATION_FAILED; |