Changeset 44376 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Jan 25, 2013 1:35:31 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 83346
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/wizards
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevd/UIWizardCloneVD.cpp
r44365 r44376 76 76 { 77 77 qulonglong temp = uVariant; 78 l_variants [i] = (KMediumVariant)(temp & (1<<i)); 78 temp &= 1<<i; 79 l_variants [i] = (KMediumVariant)temp; 79 80 } 80 81 -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvd/UIWizardNewVD.cpp
r44365 r44376 79 79 { 80 80 qulonglong temp = uVariant; 81 l_variants [i] = (KMediumVariant)(temp & (1<<i)); 81 temp &= 1<<i; 82 l_variants [i] = (KMediumVariant)temp; 82 83 } 83 84
Note:
See TracChangeset
for help on using the changeset viewer.