VirtualBox

Changeset 5917 in vbox


Ignore:
Timestamp:
Dec 2, 2007 10:04:49 PM (17 years ago)
Author:
vboxsync
Message:

gcc-4.3 warnings

Location:
trunk/src/VBox/Frontends/VBoxSDL
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VBoxSDL/Framebuffer.cpp

    r5107 r5917  
    529529    /* are constraints set? */
    530530    if (   (   (mMaxScreenWidth != ~(uint32_t)0)
    531             && (width > mMaxScreenWidth)
     531            && (width > mMaxScreenWidth))
    532532        || (   (mMaxScreenHeight != ~(uint32_t)0)
    533             && (height > mMaxScreenHeight))))
     533            && (height > mMaxScreenHeight)))
    534534    {
    535535        /* nope, we don't want that (but still don't freak out if it is set) */
  • trunk/src/VBox/Frontends/VBoxSDL/VBoxSDL.cpp

    r5815 r5917  
    21152115                            if (   event.type == SDL_KEYDOWN
    21162116                                && ksym != SDLK_UNKNOWN
    2117                                 && (   enmHKeyState == HKEYSTATE_DOWN_1ST && ksym == gHostKeySym2
    2118                                     || enmHKeyState == HKEYSTATE_DOWN_2ND && ksym == gHostKeySym1))
     2117                                && (   (enmHKeyState == HKEYSTATE_DOWN_1ST && ksym == gHostKeySym2)
     2118                                    || (enmHKeyState == HKEYSTATE_DOWN_2ND && ksym == gHostKeySym1)))
    21192119                            {
    21202120                                EvHKeyDown2  = event;
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette