summaryrefslogtreecommitdiffstats
path: root/src/gui/ThreadedLoader.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-08-19 02:24:38 +0000
committerDavid Robillard <d@drobilla.net>2012-08-19 02:24:38 +0000
commit800c329a0b77f9044923885abe0728028eca8350 (patch)
treef2d4a9d06fd6978e193de95ba60bfffe3d15a998 /src/gui/ThreadedLoader.hpp
parent317627ef40f7654c298aa1ac707851c852259e3a (diff)
downloadingen-800c329a0b77f9044923885abe0728028eca8350.tar.gz
ingen-800c329a0b77f9044923885abe0728028eca8350.tar.bz2
ingen-800c329a0b77f9044923885abe0728028eca8350.zip
Patch => Graph
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4721 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/gui/ThreadedLoader.hpp')
-rw-r--r--src/gui/ThreadedLoader.hpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/gui/ThreadedLoader.hpp b/src/gui/ThreadedLoader.hpp
index 273c72f9..162e7cc7 100644
--- a/src/gui/ThreadedLoader.hpp
+++ b/src/gui/ThreadedLoader.hpp
@@ -33,11 +33,11 @@
namespace Ingen {
namespace GUI {
-/** Thread for loading patch files.
+/** Thread for loading graph files.
*
* This is a seperate thread so it can send all the loading message without
* blocking everything else, so the app can respond to the incoming events
- * caused as a result of the patch loading, while the patch loads.
+ * caused as a result of the graph loading, while the graph loads.
*
* Implemented as a slave with a list of closures (events) which processes
* all events in the (mutex protected) list each time it's whipped.
@@ -52,19 +52,19 @@ public:
~ThreadedLoader();
- void load_patch(bool merge,
+ void load_graph(bool merge,
const Glib::ustring& document_uri,
boost::optional<Raul::Path> engine_parent,
boost::optional<Raul::Symbol> engine_symbol,
boost::optional<GraphObject::Properties> engine_data);
- void save_patch(SharedPtr<const Client::PatchModel> model,
+ void save_graph(SharedPtr<const Client::GraphModel> model,
const std::string& filename);
SharedPtr<Serialisation::Parser> parser();
private:
- void save_patch_event(SharedPtr<const Client::PatchModel> model,
+ void save_graph_event(SharedPtr<const Client::GraphModel> model,
const std::string& filename);
/** Returns nothing and takes no parameters (because they have all been bound) */