儲存庫 vbox 的更動 16459
- 時間撮記:
- 2009-2-2 下午01:24:32 (16 年 以前)
- 檔案:
-
- 修改 1 筆資料
圖例:
- 未更動
- 新增
- 刪除
-
trunk/src/VBox/Frontends/VirtualBox/src/X11/keyboard-new.c
r13339 r16459 112 112 KeySym keysym = XKeycodeToKeysym(display, code, 0); 113 113 scan = 0; 114 if (keysym ) /* otherwise, keycode not used */114 if (keysym != 0) /* otherwise, keycode not used */ 115 115 { 116 116 if ((keysym >> 8) == 0xFF) /* non-character key */ … … 124 124 else if (keysym == 0xFE03) /* ISO level3 shift, aka AltGr */ 125 125 scan = 0x138; 126 else if (use_builtin_table != 0) 126 } 127 if (keysym != 0 && scan == 0) 128 { 129 if (use_builtin_table != 0) 127 130 scan = main_keyboard_type_scans[builtin_table_number][code]; 128 131 else
注意:
瀏覽 TracChangeset
來幫助您使用更動檢視器