Changeset 26509 in vbox for trunk/src/VBox/Frontends/VBoxBFE
- Timestamp:
- Feb 14, 2010 9:35:03 AM (15 years ago)
- Location:
- trunk/src/VBox/Frontends/VBoxBFE
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxBFE/SDLConsole.cpp
r26502 r26509 181 181 && (SDL_GetModState() & ~(KMOD_MODE | KMOD_NUM | KMOD_RESERVED)) == gHostKey) 182 182 { 183 183 EvHKeyDown = *ev; 184 184 enmHKeyState = HKEYSTATE_DOWN; 185 185 break; … … 415 415 default: 416 416 { 417 417 printf("%s:%d unknown SDL event %d\n",__FILE__,__LINE__,ev->type); 418 418 LogBird(("unknown SDL event %d\n", ev->type)); 419 419 break; … … 588 588 case SDLK_CLEAR: return 0x; 589 589 case SDLK_KP_EQUALS: return 0x; 590 case SDLK_COMPOSE: 590 case SDLK_COMPOSE: return 0x; 591 591 case SDLK_HELP: return 0x; 592 592 case SDLK_BREAK: return 0x; 593 case SDLK_POWER: 594 case SDLK_EURO: 595 case SDLK_UNDO: 593 case SDLK_POWER: return 0x; 594 case SDLK_EURO: return 0x; 595 case SDLK_UNDO: return 0x; 596 596 #endif 597 597 default: -
trunk/src/VBox/Frontends/VBoxBFE/SDLFramebuffer.cpp
r19844 r26509 314 314 return E_POINTER; 315 315 316 317 318 319 316 /// @todo 317 318 NOREF(aCount); 319 NOREF(aCountCopied); 320 320 321 321 return S_OK; … … 329 329 return E_POINTER; 330 330 331 332 333 331 /// @todo 332 333 NOREF(aCount); 334 334 335 335 return S_OK;
Note:
See TracChangeset
for help on using the changeset viewer.