diff options
author | David Robillard <d@drobilla.net> | 2024-10-26 14:06:27 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2024-10-26 14:06:27 -0400 |
commit | fb86a60b41ef9312fb356f9b16ad98c603fce3ab (patch) | |
tree | 777f55409d5f4868ec96448a4235052cd78c91de | |
parent | cf83b3a2abe815002451908d6a826b98b8679f9e (diff) | |
download | ingen-fb86a60b41ef9312fb356f9b16ad98c603fce3ab.tar.gz ingen-fb86a60b41ef9312fb356f9b16ad98c603fce3ab.tar.bz2 ingen-fb86a60b41ef9312fb356f9b16ad98c603fce3ab.zip |
-rw-r--r-- | include/ingen/Module.hpp | 4 | ||||
-rw-r--r-- | include/ingen/Resource.hpp | 4 | ||||
-rw-r--r-- | include/ingen/Serialiser.hpp | 4 | ||||
-rw-r--r-- | include/ingen/client/SigClientInterface.hpp | 2 | ||||
-rw-r--r-- | src/AtomWriter.cpp | 7 | ||||
-rw-r--r-- | src/gui/GraphView.hpp | 2 | ||||
-rw-r--r-- | src/gui/ThreadedLoader.hpp | 2 | ||||
-rw-r--r-- | src/server/BlockImpl.hpp | 2 | ||||
-rw-r--r-- | src/server/GraphImpl.hpp | 9 |
9 files changed, 21 insertions, 15 deletions
diff --git a/include/ingen/Module.hpp b/include/ingen/Module.hpp index 90f2f930..c9929c0a 100644 --- a/include/ingen/Module.hpp +++ b/include/ingen/Module.hpp @@ -46,8 +46,8 @@ public: /** Library implementing this module. * - * This is managed by the World and not this class, since closing the library - * in this destructor could possibly reference code from the library + * This is managed by the World and not this class, since closing the + * library in this destructor could possibly reference code from the library * afterwards and cause a segfault on exit. */ std::unique_ptr<Library> library; diff --git a/include/ingen/Resource.hpp b/include/ingen/Resource.hpp index 8b96a27b..3ba65dda 100644 --- a/include/ingen/Resource.hpp +++ b/include/ingen/Resource.hpp @@ -175,8 +175,8 @@ public: /** Get the ingen type from a set of Properties. * - * If some coherent ingen type is found, true is returned and the appropriate - * output parameter set to true. Otherwise false is returned. + * If some coherent ingen type is found, true is returned and the + * appropriate output parameter set to true. Otherwise false is returned. */ static bool type(const URIs& uris, const Properties& properties, diff --git a/include/ingen/Serialiser.hpp b/include/ingen/Serialiser.hpp index f7f04317..5b70c78b 100644 --- a/include/ingen/Serialiser.hpp +++ b/include/ingen/Serialiser.hpp @@ -56,8 +56,8 @@ public: * * This must be called before any serializing methods. * - * The results of the serialization will be returned by the finish() method after - * the desired objects have been serialised. + * The results of the serialization will be returned by the finish() method + * after the desired objects have been serialised. * * All serialized paths will have the root path chopped from their prefix * (therefore all serialized paths must be descendants of the root) diff --git a/include/ingen/client/SigClientInterface.hpp b/include/ingen/client/SigClientInterface.hpp index 6bff2e33..955c6dcd 100644 --- a/include/ingen/client/SigClientInterface.hpp +++ b/include/ingen/client/SigClientInterface.hpp @@ -45,7 +45,7 @@ public: INGEN_SIGNAL(message, void, Message) - /** Fire pending signals. Only does anything on derived classes (that may queue) */ + /** Fire pending signals (for derived classes that may queue). */ virtual bool emit_signals() { return false; } protected: diff --git a/src/AtomWriter.cpp b/src/AtomWriter.cpp index e18b48b8..ce18337f 100644 --- a/src/AtomWriter.cpp +++ b/src/AtomWriter.cpp @@ -293,8 +293,8 @@ AtomWriter::operator()(const Delta& message) * Send a [Copy](http://lv2plug.in/ns/ext/copy#Copy) to copy an object from * its current location (subject) to another (destination). * - * If both the subject and destination are inside Ingen, like block paths, then the old object - * is copied by, for example, creating a new plugin instance. + * If both the subject and destination are inside Ingen, like block paths, then + * the old object is copied by, for example, creating a new plugin instance. * * If the subject is a filename (file URI or atom:Path) and the destination is * inside Ingen, then the subject must be an Ingen graph file or bundle, which @@ -434,7 +434,8 @@ AtomWriter::operator()(const Undo& message) /** @page protocol * @subsection Undo * - * Use [ingen:Redo](http://drobilla.net/ns/ingen#Redo) to redo the last undone change. + * Use [ingen:Redo](http://drobilla.net/ns/ingen#Redo) to redo the last undone + * change. * * @code{.ttl} * [] a ingen:Redo . diff --git a/src/gui/GraphView.hpp b/src/gui/GraphView.hpp index 0b6aee1e..812f2cbc 100644 --- a/src/gui/GraphView.hpp +++ b/src/gui/GraphView.hpp @@ -48,7 +48,7 @@ namespace gui { class App; class GraphCanvas; -/** The graph specific contents of a GraphWindow (ie the canvas and whatever else). +/** The graph specific contents of a GraphWindow (the canvas and whatever else). * * \ingroup GUI */ diff --git a/src/gui/ThreadedLoader.hpp b/src/gui/ThreadedLoader.hpp index 83860461..32430277 100644 --- a/src/gui/ThreadedLoader.hpp +++ b/src/gui/ThreadedLoader.hpp @@ -88,7 +88,7 @@ private: save_graph_event(const std::shared_ptr<const client::GraphModel>& model, const URI& uri); - /** Returns nothing and takes no parameters (because they have all been bound) */ + /// Returns nothing and takes no parameters (because they're all bound) using Closure = sigc::slot<void>; void run(); diff --git a/src/server/BlockImpl.hpp b/src/server/BlockImpl.hpp index a24bf411..0c823219 100644 --- a/src/server/BlockImpl.hpp +++ b/src/server/BlockImpl.hpp @@ -127,7 +127,7 @@ public: /** Learn the next incoming MIDI event (for internals) */ virtual void learn() {} - /** Do whatever needs doing in the process thread before process() is called */ + /** Do any necessary preparation in the process thread before process(). */ virtual void pre_process(RunContext& ctx); /** Run block for an entire process cycle (calls run()). */ diff --git a/src/server/GraphImpl.hpp b/src/server/GraphImpl.hpp index 7c3a56df..b09dbb6a 100644 --- a/src/server/GraphImpl.hpp +++ b/src/server/GraphImpl.hpp @@ -99,9 +99,14 @@ public: * Audio thread. * * \param ctx Process context + * * \param bufs New set of buffers - * \param poly Must be < the most recent value passed to prepare_internal_poly. - * \param maid Any objects no longer needed will be pushed to this + * + * \param poly Must be < the most recent value passed to + * prepare_internal_poly. + * + * \param maid Any objects no longer needed will be + * pushed to this */ bool apply_internal_poly(RunContext& ctx, BufferFactory& bufs, |