Changeset 11186 in vbox for trunk/src/VBox/Frontends/VirtualBox4
- Timestamp:
- Aug 6, 2008 5:10:32 PM (16 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox4
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxVMSettingsHD.h
r10999 r11186 120 120 { 121 121 return slt.bus < aOther.slt.bus || 122 slt.bus == aOther.slt.bus && slt.channel < aOther.slt.channel||123 slt.bus == aOther.slt.bus && slt.channel == aOther.slt.channel && slt.device < aOther.slt.device;122 (slt.bus == aOther.slt.bus && slt.channel < aOther.slt.channel) || 123 (slt.bus == aOther.slt.bus && slt.channel == aOther.slt.channel && slt.device < aOther.slt.device); 124 124 } 125 125 -
trunk/src/VBox/Frontends/VirtualBox4/src/VBoxUpdateDlg.cpp
r10916 r11186 54 54 { 55 55 return x < aOther.x || 56 x == aOther.x && y < aOther.y||57 x == aOther.x && y == aOther.y && z < aOther.z;56 (x == aOther.x && y < aOther.y) || 57 (x == aOther.x && y == aOther.y && z < aOther.z); 58 58 } 59 59
Note:
See TracChangeset
for help on using the changeset viewer.