summaryrefslogtreecommitdiff
path: root/libs/ardour/luabindings.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-03-24 21:36:07 +0100
committerRobin Gareus <robin@gareus.org>2016-03-24 22:54:20 +0100
commit57b76983121906710853ea46ebd5089a6f7d40a7 (patch)
tree0a192922270595525619e4848a90d82325108389 /libs/ardour/luabindings.cc
parente0e98d45d42d0c79905b661ef7a94059d2087622 (diff)
Consistent C++ & Lua Namespace/Class names + documentation.
Diffstat (limited to 'libs/ardour/luabindings.cc')
-rw-r--r--libs/ardour/luabindings.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/ardour/luabindings.cc b/libs/ardour/luabindings.cc
index ced3e9fcec..7e9dac8dbb 100644
--- a/libs/ardour/luabindings.cc
+++ b/libs/ardour/luabindings.cc
@@ -749,10 +749,10 @@ void
LuaBindings::osc (lua_State* L)
{
luabridge::getGlobalNamespace (L)
- .beginNamespace ("OSC")
- .beginClass<LuaAPI::LuaOSCAddress> ("Address")
+ .beginNamespace ("LuaOSC")
+ .beginClass<LuaOSC::Address> ("Address")
.addConstructor<void (*) (std::string)> ()
- .addCFunction ("send", &LuaAPI::LuaOSCAddress::send)
+ .addCFunction ("send", &LuaOSC::Address::send)
.endClass ()
.endNamespace ();
}