summaryrefslogtreecommitdiffstats
path: root/src/gui/LoadGraphWindow.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/LoadGraphWindow.hpp')
-rw-r--r--src/gui/LoadGraphWindow.hpp13
1 files changed, 6 insertions, 7 deletions
diff --git a/src/gui/LoadGraphWindow.hpp b/src/gui/LoadGraphWindow.hpp
index 64ebe99b..a6fa84c8 100644
--- a/src/gui/LoadGraphWindow.hpp
+++ b/src/gui/LoadGraphWindow.hpp
@@ -25,9 +25,8 @@
#include <gtkmm/radiobutton.h>
#include <gtkmm/spinbutton.h>
-#include "raul/SharedPtr.hpp"
-
#include "ingen/Node.hpp"
+#include "ingen/types.hpp"
namespace Ingen {
@@ -49,11 +48,11 @@ public:
void init(App& app) { _app = &app; }
- void set_graph(SharedPtr<const Client::GraphModel> graph);
+ void set_graph(SPtr<const Client::GraphModel> graph);
- void present(SharedPtr<const Client::GraphModel> graph,
- bool import,
- Node::Properties data);
+ void present(SPtr<const Client::GraphModel> graph,
+ bool import,
+ Node::Properties data);
protected:
void on_show();
@@ -73,7 +72,7 @@ private:
Node::Properties _initial_data;
- SharedPtr<const Client::GraphModel> _graph;
+ SPtr<const Client::GraphModel> _graph;
Gtk::Label* _symbol_label;
Gtk::Entry* _symbol_entry;