summaryrefslogtreecommitdiffstats
path: root/src/gui/ThreadedLoader.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/ThreadedLoader.hpp')
-rw-r--r--src/gui/ThreadedLoader.hpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/gui/ThreadedLoader.hpp b/src/gui/ThreadedLoader.hpp
index deb8781b..2668a691 100644
--- a/src/gui/ThreadedLoader.hpp
+++ b/src/gui/ThreadedLoader.hpp
@@ -54,7 +54,8 @@ namespace GUI {
class ThreadedLoader : public Raul::Slave
{
public:
- ThreadedLoader(SharedPtr<ServerInterface> engine);
+ ThreadedLoader(App& app,
+ SharedPtr<ServerInterface> engine);
void load_patch(bool merge,
const Glib::ustring& document_uri,
@@ -74,10 +75,10 @@ private:
void _whipped();
+ App& _app;
SharedPtr<ServerInterface> _engine;
-
- Glib::Mutex _mutex;
- list<Closure> _events;
+ Glib::Mutex _mutex;
+ list<Closure> _events;
};
} // namespace GUI