diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2015-12-21 18:55:21 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2015-12-21 18:55:21 +0100 |
commit | d8943ff77410ca6a46956f660211c87dee8e1e84 (patch) | |
tree | 0063f86a72e10e2c9c5ded67ec3ef3fdb0302005 | |
parent | 856a971b7a33e58c2711d6b38e4ef4a6cbb2210e (diff) |
Fix missing pointer initialisation.
-rw-r--r-- | plugingui/dgwindow.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/plugingui/dgwindow.cc b/plugingui/dgwindow.cc index 36d106c..9eae38c 100644 --- a/plugingui/dgwindow.cc +++ b/plugingui/dgwindow.cc @@ -195,6 +195,11 @@ DGWindow::DGWindow(MessageHandler& messageHandler, Config& config) CONNECT(&humanizeControls->falloffKnob, valueChangedNotifier, this, &DGWindow::falloffValueChanged); + // Store pointers for PluginGUI access: + velocityCheck = &humanizeControls->velocityCheck; + attackKnob = &humanizeControls->attackKnob; + falloffKnob = &humanizeControls->falloffKnob; + VerticalLine *l3 = new VerticalLine(this); l3->resize(width() - 40, vlineSpacing); layout.addItem(l3); |