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 5cf6b70 commit d633600Copy full SHA for d633600
src/editor.cpp
@@ -1616,12 +1616,12 @@ bool Editor::open (void* ptr)
1616
}
1617
((AudioEffectX*)effect)->getEffectName (synthname);
1618
SetWindowText((HWND)dlg, synthname);
1619
- }
1620
#ifdef _WIN64
1621
- SetWindowLongPtr((HWND)dlg, GWLP_USERDATA, (LONG_PTR)effect);
+ SetWindowLongPtr((HWND)dlg, GWLP_USERDATA, (LONG_PTR)effect);
1622
#else
1623
- SetWindowLong((HWND)dlg, GWL_USERDATA, (LONG)effect);
+ SetWindowLong((HWND)dlg, GWL_USERDATA, (LONG)effect);
1624
#endif
+ }
1625
HWND kbdwin = GetDlgItem((HWND)dlg, IDC_KEYBOARD);
1626
if (kbdwin)
1627
{
0 commit comments