Changeset 15132 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Dec 8, 2008 8:50:07 PM (16 years ago)
- Location:
- trunk/src/VBox/Frontends
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/VBoxGlobal.cpp
r15051 r15132 1816 1816 startEnumeratingMedia(); 1817 1817 if (!findMedium (cmedium, medium)) 1818 AssertFailedReturn (QString::null); 1818 { 1819 /// @todo Still not found. Means that we are trying to get details 1820 /// of a hard disk that was deleted by a third party before we got a 1821 /// chance to complete the task. Returning null in this case should 1822 /// be OK, For more information, see *** in VBoxMedium::etails(). 1823 return QString::null; 1824 } 1819 1825 } 1820 1826 … … 1972 1978 1973 1979 /// @todo for the explaination of the below isOk() checks, see *** 1974 /// in #details (const CHardDisk &, bool).1980 /// in VBoxMedium::details(). 1975 1981 if (hda.isOk()) 1976 1982 { -
trunk/src/VBox/Frontends/VirtualBox4/src/VBoxGlobal.cpp
r15065 r15132 1952 1952 startEnumeratingMedia(); 1953 1953 if (!findMedium (cmedium, medium)) 1954 AssertFailedReturn (QString::null); 1954 { 1955 /// @todo Still not found. Means that we are trying to get details 1956 /// of a hard disk that was deleted by a third party before we got a 1957 /// chance to complete the task. Returning null in this case should 1958 /// be OK, For more information, see *** in VBoxMedium::etails(). 1959 return QString::null; 1960 } 1955 1961 } 1956 1962 … … 2162 2168 2163 2169 /// @todo for the explaination of the below isOk() checks, see *** 2164 /// in #details (const CHardDisk &, bool).2170 /// in VBoxMedium::details(). 2165 2171 if (hda.isOk()) 2166 2172 {
Note:
See TracChangeset
for help on using the changeset viewer.