From 230f3841d750edbbbc2382a3512c1414ce26d30f Mon Sep 17 00:00:00 2001 From: kevin Date: Mon, 25 Mar 2024 14:30:47 -0400 Subject: [PATCH] cwIo.cpp: Added call to uiRealTimeReport() in call to io::realTimeReport(). --- cwIo.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cwIo.cpp b/cwIo.cpp index 9d23d5d..bb5fae2 100644 --- a/cwIo.cpp +++ b/cwIo.cpp @@ -2497,7 +2497,7 @@ void cw::io::realTimeReport( handle_t h ) { io_t* p = _handleToPtr(h); audio::device::realTimeReport(p->audioH); - + uiRealTimeReport(h); } @@ -3957,8 +3957,8 @@ void cw::io::uiReport( handle_t h ) void cw::io::uiRealTimeReport( handle_t h ) { - ui::handle_t uiH; - if(_handleToUiHandle(h,uiH) == kOkRC ) - ui::realTimeReport(uiH); + ui::ws::handle_t uiH; + if(_handleToWsUiHandle(h,uiH) == kOkRC ) + ui::ws::realTimeReport(uiH); }