From 37679fe3d75caff0b4a5e8ee965fc80855e8bdae Mon Sep 17 00:00:00 2001 From: falkTX Date: Mon, 17 May 2021 22:28:53 +0100 Subject: [PATCH] Fix 1 more deprecated use Signed-off-by: falkTX --- distrho/src/DistrhoPluginVST.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/distrho/src/DistrhoPluginVST.cpp b/distrho/src/DistrhoPluginVST.cpp index 04ff34a8..f7cf2431 100644 --- a/distrho/src/DistrhoPluginVST.cpp +++ b/distrho/src/DistrhoPluginVST.cpp @@ -252,10 +252,10 @@ public: switch (value) { // convert some specials to normal keys - case 1: index = kCharBackspace; break; - case 6: index = kCharEscape; break; - case 7: index = ' '; break; - case 22: index = kCharDelete; break; + case 1: index = kKeyBackspace; break; + case 6: index = kKeyEscape; break; + case 7: index = ' '; break; + case 22: index = kKeyDelete; break; // handle rest of special keys case 40: special = kKeyF1; break;