Changeset 10970 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Jul 30, 2008 11:12:09 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox4/src/QIWidgetValidator.cpp
r9775 r10970 242 242 else if (QComboBox *cb = qobject_cast<QComboBox *> (wgt)) 243 243 { 244 244 245 245 if (!cb->validator() || !cb->lineEdit()) 246 246 continue; … … 273 273 } 274 274 275 /** 275 /** 276 276 * Returns a message that describes the last detected error (invalid or 277 277 * incomplete input). … … 299 299 { 300 300 if (mLastInvalid.buddy->inherits ("QLabel")) 301 { 302 /* Remove '&' symbol from the buddy field name */ 301 303 title = VBoxGlobal:: 302 304 removeAccelMark (((QLabel *) mLastInvalid.buddy)->text()); 305 306 /* Remove ':' symbol from the buddy field name */ 307 title = title.remove (':'); 308 } 303 309 } 304 310
Note:
See TracChangeset
for help on using the changeset viewer.