Changeset 85137 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Jul 9, 2020 7:21:07 AM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 139083
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/extensions/QIComboBox.cpp
r85135 r85137 305 305 void QIComboBox::mark(bool fError) 306 306 { 307 if (!m_pComboBox)308 return;307 /* Redirect to combo-box: */ 308 AssertPtrReturnVoid(m_pComboBox); 309 309 QPalette palette = m_pComboBox->palette(); 310 310 if (fError) -
trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIFilePathSelector.h
r85136 r85137 118 118 const QString& defaultPath() const; 119 119 120 /** Paints the file selectors background to a reddish color when @p fError is true. */121 void markFileSelector(bool fError);122 123 120 public slots: 124 121
Note:
See TracChangeset
for help on using the changeset viewer.