- Timestamp:
- Nov 16, 2017 11:12:36 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsSF.cpp
r68435 r69710 213 213 { 214 214 iTextWidth = fm.width(strOneString); 215 if (iTextWidth + iIndentSize > cWidth) 215 if ( iTextWidth 216 && (iTextWidth + iIndentSize > cWidth)) 216 217 { 217 218 iStart = 0; … … 249 250 } 250 251 } 251 while (iTextWidth + iIndentSize > cWidth); 252 while ( iTextWidth 253 && (iTextWidth + iIndentSize > cWidth)); 252 254 253 255 if (iPosition || m_enmFormat == FormatType_EllipsisFile)
Note:
See TracChangeset
for help on using the changeset viewer.