[BACK]Return to asir32guiview.cpp CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / windows / asir32gui

Diff for /OpenXM_contrib2/windows/asir32gui/asir32guiview.cpp between version 1.26 and 1.27

version 1.26, 2013/08/03 18:29:11 version 1.27, 2013/08/07 01:55:08
Line 377  void CAsir32guiView::OnChar(UINT nChar, UINT nRepCnt, 
Line 377  void CAsir32guiView::OnChar(UINT nChar, UINT nRepCnt, 
         // TODO: この位置にメッセージ ハンドラ用のコードを追加するかまたはデフォルトの処理を呼び出してください          // TODO: この位置にメッセージ ハンドラ用のコードを追加するかまたはデフォルトの処理を呼び出してください
         char *exp_result;          char *exp_result;
         char tmp[BUFSIZ];          char tmp[BUFSIZ];
           int i;
   
         if ( asirgui_kind == ASIRGUI_MESSAGE ) {          if ( asirgui_kind == ASIRGUI_MESSAGE ) {
                 Beep(); return;                  Beep(); return;
Line 439  void CAsir32guiView::OnChar(UINT nChar, UINT nRepCnt, 
Line 440  void CAsir32guiView::OnChar(UINT nChar, UINT nRepCnt, 
                 /* wake up the engine */                  /* wake up the engine */
                 tmp[0] = 0;                  tmp[0] = 0;
                 put_line(tmp);                  put_line(tmp);
                   return;
           case CTRL('Y'):
                   Paste(); return;
           case CTRL('I'):
                 return;                  return;
         default :          default :
                 if ( nChar >= 0x20 && nChar < 0x7f )                  if ( nChar >= 0x20 && nChar < 0x7f )

Legend:
Removed from v.1.26  
changed lines
  Added in v.1.27

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>