summaryrefslogtreecommitdiffstats
path: root/src/engine/InternalPlugin.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-05-12 04:59:38 +0000
committerDavid Robillard <d@drobilla.net>2009-05-12 04:59:38 +0000
commitf230de56d33171a45588af91d31a3ea09c840933 (patch)
tree4f70ec9de4452c690ec30d406264d7c5f9fe2f07 /src/engine/InternalPlugin.hpp
parent0fd55176b99cd6bd3230afdf350687a04702bd92 (diff)
downloadingen-f230de56d33171a45588af91d31a3ea09c840933.tar.gz
ingen-f230de56d33171a45588af91d31a3ea09c840933.tar.bz2
ingen-f230de56d33171a45588af91d31a3ea09c840933.zip
Fix internal node names.
Update glade file. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1986 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/engine/InternalPlugin.hpp')
-rw-r--r--src/engine/InternalPlugin.hpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/engine/InternalPlugin.hpp b/src/engine/InternalPlugin.hpp
index 1ada28a1..095899eb 100644
--- a/src/engine/InternalPlugin.hpp
+++ b/src/engine/InternalPlugin.hpp
@@ -47,11 +47,9 @@ class InternalPlugin : public PluginImpl
{
public:
InternalPlugin(const std::string& uri,
- const std::string& symbol,
- const std::string& name)
+ const std::string& symbol)
: PluginImpl(Plugin::Internal, uri)
, _symbol(symbol)
- , _name(name)
{}
NodeImpl* instantiate(const std::string& name,
@@ -60,11 +58,9 @@ public:
Engine& engine);
const string symbol() const { return _symbol; }
- const string name() const { return _name; }
private:
const string _symbol;
- const string _name;
};