Changeset 101147 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Sep 18, 2023 12:39:24 PM (15 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/settings/UIAdvancedSettingsDialog.cpp
r101136 r101147 101 101 virtual ~UIFilterEditor() RT_OVERRIDE; 102 102 103 /** Defines placeholder @a strText. */ 104 void setPlaceholderText(const QString &strText); 105 103 106 protected: 104 107 … … 190 193 { 191 194 cleanup(); 195 } 196 197 void UIFilterEditor::setPlaceholderText(const QString &strText) 198 { 199 if (m_pLineEdit) 200 m_pLineEdit->setPlaceholderText(strText); 192 201 } 193 202 … … 465 474 void UIAdvancedSettingsDialog::retranslateUi() 466 475 { 476 /* Translate filter editor placeholder: */ 477 m_pEditorFilter->setPlaceholderText(tr("Search settings")); 478 467 479 /* Translate warning-pane stuff: */ 468 480 m_pWarningPane->setWarningLabelText(tr("Invalid settings detected"));
Note:
See TracChangeset
for help on using the changeset viewer.