From e64eabe64ee966364bc5f6704c5227687ea309d8 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 11 May 2012 04:55:56 +0000 Subject: Move Forge to the appropriate namespace. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4350 a436a847-0d15-0410-975c-d299462d15a1 --- src/gui/App.hpp | 2 +- src/gui/PropertiesWindow.cpp | 2 +- src/gui/ingen_gui_lv2.cpp | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) (limited to 'src/gui') diff --git a/src/gui/App.hpp b/src/gui/App.hpp index 3b9b530c..2a9897a5 100644 --- a/src/gui/App.hpp +++ b/src/gui/App.hpp @@ -105,7 +105,7 @@ public: Glib::RefPtr icon_from_path(const std::string& path, int size); - Ingen::Forge& forge() const { return _world->forge(); } + Ingen::Shared::Forge& forge() const { return _world->forge(); } SharedPtr interface() const { return _world->interface(); } SharedPtr client() const { return _client; } SharedPtr store() const { return _store; } diff --git a/src/gui/PropertiesWindow.cpp b/src/gui/PropertiesWindow.cpp index f1ee032d..d7f781a7 100644 --- a/src/gui/PropertiesWindow.cpp +++ b/src/gui/PropertiesWindow.cpp @@ -125,7 +125,7 @@ PropertiesWindow::set_object(SharedPtr model) Gtk::Widget* PropertiesWindow::create_value_widget(const Raul::URI& uri, const Raul::Atom& value) { - Ingen::Forge& forge = _app->forge(); + Ingen::Shared::Forge& forge = _app->forge(); if (value.type() == forge.Int) { Gtk::SpinButton* widget = manage(new Gtk::SpinButton(0.0, 0)); widget->property_numeric() = true; diff --git a/src/gui/ingen_gui_lv2.cpp b/src/gui/ingen_gui_lv2.cpp index c785d857..f4b1aa96 100644 --- a/src/gui/ingen_gui_lv2.cpp +++ b/src/gui/ingen_gui_lv2.cpp @@ -60,7 +60,7 @@ struct IngenLV2UI { int argc; char** argv; - Ingen::Forge* forge; + Ingen::Shared::Forge* forge; Ingen::Shared::World* world; IngenLV2AtomSink* sink; SharedPtr app; @@ -96,7 +96,7 @@ instantiate(const LV2UI_Descriptor* descriptor, ui->world = new Ingen::Shared::World( ui->argc, ui->argv, map, unmap); - ui->forge = new Ingen::Forge(ui->world->uri_map()); + ui->forge = new Ingen::Shared::Forge(ui->world->uri_map()); if (!ui->world->load_module("client")) { delete ui; -- cgit v1.2.1