summaryrefslogtreecommitdiffstats
path: root/src/client
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-12-22 16:34:14 +0000
committerDavid Robillard <d@drobilla.net>2009-12-22 16:34:14 +0000
commita854ac939a20b12932384c3074c9ce85df0b39bd (patch)
tree0c84a22cbf128369fae7bf3b32a9cf64cb575d21 /src/client
parent19045ab92aa7e996971584a0dc8780d1d58b498b (diff)
downloadingen-a854ac939a20b12932384c3074c9ce85df0b39bd.tar.gz
ingen-a854ac939a20b12932384c3074c9ce85df0b39bd.tar.bz2
ingen-a854ac939a20b12932384c3074c9ce85df0b39bd.zip
Fix compilation.
Consistent naming of module source files. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2315 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/client')
-rw-r--r--src/client/ingen_client.cpp (renamed from src/client/client.cpp)6
-rw-r--r--src/client/wscript2
2 files changed, 4 insertions, 4 deletions
diff --git a/src/client/client.cpp b/src/client/ingen_client.cpp
index 9512ba44..9f644e4d 100644
--- a/src/client/client.cpp
+++ b/src/client/ingen_client.cpp
@@ -50,9 +50,9 @@ new_http_interface(Ingen::Shared::World* world, const std::string& url)
struct IngenClientModule : public Ingen::Shared::Module {
void load(Ingen::Shared::World* world) {
- world->interface_factories.insert(make_pair("osc.udp", &new_osc_interface));
- world->interface_factories.insert(make_pair("osc.tcp", &new_osc_interface));
- world->interface_factories.insert(make_pair("http", &new_http_interface));
+ world->add_interface_factory("osc.udp", &new_osc_interface);
+ world->add_interface_factory("osc.tcp", &new_osc_interface);
+ world->add_interface_factory("http", &new_http_interface);
}
};
diff --git a/src/client/wscript b/src/client/wscript
index ea0eef85..749d9ec7 100644
--- a/src/client/wscript
+++ b/src/client/wscript
@@ -15,7 +15,7 @@ def build(bld):
PluginUI.cpp
PortModel.cpp
ThreadedSigClientInterface.cpp
- client.cpp
+ ingen_client.cpp
'''
if bld.env['HAVE_SOUP'] == 1: