From d8943ff77410ca6a46956f660211c87dee8e1e84 Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Mon, 21 Dec 2015 18:55:21 +0100 Subject: Fix missing pointer initialisation. --- plugingui/dgwindow.cc | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'plugingui') 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); -- cgit v1.2.3