We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04768ee commit 97d5529Copy full SHA for 97d5529
1 file changed
plugins/zynaddsubfx/ZynAddSubFx.cpp
@@ -27,6 +27,7 @@
27
#include <QDir>
28
#include <QDomDocument>
29
#include <QTemporaryFile>
30
+#include <QtGlobal>
31
#include <QDropEvent>
32
#include <QGridLayout>
33
#include <QPushButton>
@@ -291,7 +292,10 @@ void ZynAddSubFxInstrument::loadSettings( const QDomElement & _this )
291
292
293
emit settingsChanged();
294
}
295
+// FIXME: Remove this check in future versions. Slots are public in Qt5+
296
+#if QT_VERSION >= 0x050000
297
emit instrumentTrack()->pitchModel()->dataChanged();
298
+#endif
299
300
301
0 commit comments