diff options
author | David Robillard <d@drobilla.net> | 2006-06-12 04:48:20 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2006-06-12 04:48:20 +0000 |
commit | efee2b08f575e2c216cffa6f08a928223ab2cedb (patch) | |
tree | 089fdf9bc89aa04793b03cbfccb438a7a9c9f387 /src/progs/gtk/ControlInterface.cpp | |
parent | 5818a04533e472820f6c6748b2f07d7d1ca5789a (diff) | |
download | ingen-efee2b08f575e2c216cffa6f08a928223ab2cedb.tar.gz ingen-efee2b08f575e2c216cffa6f08a928223ab2cedb.tar.bz2 ingen-efee2b08f575e2c216cffa6f08a928223ab2cedb.zip |
Store memory bug fixes (multiple ref ptr's to the same object, bad),
control panel fixes
git-svn-id: http://svn.drobilla.net/lad/grauph@32 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/progs/gtk/ControlInterface.cpp')
-rw-r--r-- | src/progs/gtk/ControlInterface.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/progs/gtk/ControlInterface.cpp b/src/progs/gtk/ControlInterface.cpp index eb5eee1b..2b22eee1 100644 --- a/src/progs/gtk/ControlInterface.cpp +++ b/src/progs/gtk/ControlInterface.cpp @@ -73,7 +73,7 @@ ControlInterface::new_patch_model(PatchModel* const pm) pm->plugin(plugin); }*/ - assert(pm->parent() == NULL); + assert(!pm->parent()); PatchController* patch = new PatchController(pm); //Store::instance().add_object(patch); //_app->patch_tree()->add_patch(patch); |