summaryrefslogtreecommitdiffstats
path: root/src/gui/GraphBox.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-01-21 00:41:34 +0100
committerDavid Robillard <d@drobilla.net>2018-01-21 00:56:50 +0100
commit44f7ad5222d824d81dc743045d5887418847e74e (patch)
tree1b41535ac00b8b225a25dba2873b064cb074bfa9 /src/gui/GraphBox.hpp
parent90fca083052880479ad90d870e556f0648e32106 (diff)
downloadingen-44f7ad5222d824d81dc743045d5887418847e74e.tar.gz
ingen-44f7ad5222d824d81dc743045d5887418847e74e.tar.bz2
ingen-44f7ad5222d824d81dc743045d5887418847e74e.zip
Add URI class and remove use of Raul::URI
Diffstat (limited to 'src/gui/GraphBox.hpp')
-rw-r--r--src/gui/GraphBox.hpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/gui/GraphBox.hpp b/src/gui/GraphBox.hpp
index ee054e17..fd9bf9c0 100644
--- a/src/gui/GraphBox.hpp
+++ b/src/gui/GraphBox.hpp
@@ -40,6 +40,8 @@ class Path;
namespace Ingen {
+class URI;
+
namespace Client {
class GraphModel;
class PortModel;
@@ -97,7 +99,7 @@ public:
private:
void graph_port_added(SPtr<const Client::PortModel> port);
void graph_port_removed(SPtr<const Client::PortModel> port);
- void property_changed(const Raul::URI& predicate, const Atom& value);
+ void property_changed(const URI& predicate, const Atom& value);
void show_status(const Client::ObjectModel* model);
void error(const Glib::ustring& message,
@@ -106,7 +108,7 @@ private:
bool confirm(const Glib::ustring& message,
const Glib::ustring& secondary_text="");
- void save_graph(const Raul::URI& uri);
+ void save_graph(const URI& uri);
void event_import();
void event_save();