VirtualBox

Changeset 24400 in vbox for trunk/src/VBox


Ignore:
Timestamp:
Nov 5, 2009 5:01:29 PM (15 years ago)
Author:
vboxsync
Message:

FE/Qt4: VBoxConsoleWND: Reusing some code added in r54442; Coding-style fixes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/src/VBoxConsoleWnd.cpp

    r24398 r24400  
    22012201
    22022202            /* Mount Medium actions */
    2203             int addedIntoList = 0;
    22042203            CMediumVector mediums;
    22052204            switch (mediumType)
     
    22172216            }
    22182217
     2218            int mediumsToBeShown = 0;
    22192219            const int maxMediumsToBeShown = 5;
    22202220            CMedium currentMedium = attachment.GetMedium();
     
    22382238                if (!isMediumUsed)
    22392239                {
    2240                     if (   !currentUsed
    2241                         && !currentMedium.isNull()
    2242                         && addedIntoList == maxMediumsToBeShown-1)
     2240                    if (!currentUsed && !currentMedium.isNull() && mediumsToBeShown == maxMediumsToBeShown - 1)
    22432241                        medium = currentMedium;
    22442242
     
    22482246                    QAction *mountMediumAction = new QAction (VBoxMedium (medium, mediumType).name(), attachmentMenu);
    22492247                    mountMediumAction->setCheckable (true);
    2250                     mountMediumAction->setChecked (!attachment.GetMedium().isNull() &&
    2251                                                    medium.GetId() == currentId);
     2248                    mountMediumAction->setChecked (!currentMedium.isNull() && medium.GetId() == currentId);
    22522249                    mountMediumAction->setData (QVariant::fromValue (MountTarget (attachment.GetController().GetName(),
    22532250                                                                                  attachment.GetPort(),
     
    22562253                    connect (mountMediumAction, SIGNAL (triggered (bool)), this, SLOT (mountMedium()));
    22572254                    attachmentMenu->addAction (mountMediumAction);
    2258                     ++ addedIntoList;
    2259                     if (addedIntoList == maxMediumsToBeShown)
     2255                    ++ mediumsToBeShown;
     2256                    if (mediumsToBeShown == maxMediumsToBeShown)
    22602257                        break;
    22612258                }
     
    22782275            /* Unmount Medium action */
    22792276            QAction *unmountMediumAction = new QAction (attachmentMenu);
    2280             unmountMediumAction->setEnabled (!attachment.GetMedium().isNull());
     2277            unmountMediumAction->setEnabled (!currentMedium.isNull());
    22812278            unmountMediumAction->setData (QVariant::fromValue (MountTarget (attachment.GetController().GetName(),
    22822279                                                                            attachment.GetPort(),
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