From 22395ab7d817dec53e2c2fff07de6d88db70492e Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 31 Jul 2007 23:17:02 +0000 Subject: Functional engine Python bindings (e.g. ingen -e -r patchomatic.py). Rename window nitpick fix from Andrew Greenwood. git-svn-id: http://svn.drobilla.net/lad/ingen@663 a436a847-0d15-0410-975c-d299462d15a1 --- src/libs/module/Module.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/libs/module/Module.cpp') diff --git a/src/libs/module/Module.cpp b/src/libs/module/Module.cpp index 9aacd0cc..e5a137e7 100644 --- a/src/libs/module/Module.cpp +++ b/src/libs/module/Module.cpp @@ -56,7 +56,7 @@ load_module(const string& name) string filename = Glib::Module::build_path(dir, name); if (Glib::file_test(filename, Glib::FILE_TEST_EXISTS)) { - module = new Glib::Module(filename, Glib::MODULE_BIND_LAZY); + module = new Glib::Module(filename); if (*module) { return SharedPtr(module); @@ -70,8 +70,7 @@ load_module(const string& name) // Try default directory if not found module = new Glib::Module( - Glib::Module::build_path(INGEN_MODULE_DIR, name), - Glib::MODULE_BIND_LAZY); + Glib::Module::build_path(INGEN_MODULE_DIR, name)); if (*module) { return SharedPtr(module); -- cgit v1.2.1