From 919f57e16e3a7319cf7d05c9342bf79c393381a0 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Sat, 20 Sep 2014 14:43:30 -0600 Subject: Update ChangeLog --- NxWidgets/libnxwidgets/src/ccallback.cxx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'NxWidgets/libnxwidgets/src') diff --git a/NxWidgets/libnxwidgets/src/ccallback.cxx b/NxWidgets/libnxwidgets/src/ccallback.cxx index cec7ea1bf..46108acf3 100644 --- a/NxWidgets/libnxwidgets/src/ccallback.cxx +++ b/NxWidgets/libnxwidgets/src/ccallback.cxx @@ -45,7 +45,7 @@ #include #ifdef CONFIG_NXTERM_NXKBDIN -# include +# include #endif #include "cwidgetcontrol.hxx" @@ -88,7 +88,7 @@ CCallback::CCallback(CWidgetControl *widgetControl) // Keyboard input is initially direct to the widgets within the window #ifdef CONFIG_NXTERM_NXKBDIN - m_nxconsole = (NXCONSOLE)0; + m_nxterm = (NXTERM)0; #endif } @@ -206,15 +206,15 @@ void CCallback::newKeyboardEvent(NXHANDLE hwnd, uint8_t nCh, CCallback *This = (CCallback *)arg; // Is NX keyboard input being directed to the widgets within the window - // (default) OR is NX keyboard input being re-directed to an NxConsole + // (default) OR is NX keyboard input being re-directed to an NxTerm // driver? #ifdef CONFIG_NXTERM_NXKBDIN - if (This->m_nxconsole) + if (This->m_nxterm) { - // Keyboard input is going to an NxConsole + // Keyboard input is going to an NxTerm - nxcon_kbdin(This->m_nxconsole, str, nCh); + nxcon_kbdin(This->m_nxterm, str, nCh); } else #endif -- cgit v1.2.3