Changeset 93937 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Feb 24, 2022 4:57:58 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/settings/editors/UIUpdateSettingsEditor.cpp
r93115 r93937 82 82 if (m_pCheckBox) 83 83 { 84 m_pCheckBox->set WhatsThis(tr("When checked, the application will periodically connect to the VirtualBox "85 84 m_pCheckBox->setToolTip(tr("When checked, the application will periodically connect to the VirtualBox " 85 "website and check whether a new VirtualBox version is available.")); 86 86 m_pCheckBox->setText(tr("&Check for Updates")); 87 87 } … … 92 92 if (m_pComboUpdatePeriod) 93 93 { 94 m_pComboUpdatePeriod->setWhatsThis(tr("Selects how often the new version check should be performed. Note that if you want " 95 "to completely disable this check, just clear the above check box.")); 94 m_pComboUpdatePeriod->setToolTip(tr("Selects how often the new version check should be performed.")); 96 95 const int iCurrenIndex = m_pComboUpdatePeriod->currentIndex(); 97 96 m_pComboUpdatePeriod->clear(); … … 108 107 if (m_mapRadioButtons.value(VBoxUpdateData::BranchStable)) 109 108 { 110 m_mapRadioButtons.value(VBoxUpdateData::BranchStable)->set WhatsThis(tr("<p>Choose this if you only wish tobe notified "111 "about stable updates to VirtualBox.</p>"));109 m_mapRadioButtons.value(VBoxUpdateData::BranchStable)->setToolTip(tr("When chosen, you will be notified " 110 "about stable updates to VirtualBox.")); 112 111 m_mapRadioButtons.value(VBoxUpdateData::BranchStable)->setText(tr("&Stable Release Versions")); 113 112 } 114 113 if (m_mapRadioButtons.value(VBoxUpdateData::BranchAllRelease)) 115 114 { 116 m_mapRadioButtons.value(VBoxUpdateData::BranchAllRelease)->set WhatsThis(tr("<p>Choose this if you wish tobe notified "117 "about all new VirtualBox releases.</p>"));115 m_mapRadioButtons.value(VBoxUpdateData::BranchAllRelease)->setToolTip(tr("When chosen, you will be notified " 116 "about all new VirtualBox releases.")); 118 117 m_mapRadioButtons.value(VBoxUpdateData::BranchAllRelease)->setText(tr("&All New Releases")); 119 118 } 120 119 if (m_mapRadioButtons.value(VBoxUpdateData::BranchWithBetas)) 121 120 { 122 m_mapRadioButtons.value(VBoxUpdateData::BranchWithBetas)->set WhatsThis(tr("<p>Choose this to be notified about all new"123 "VirtualBox releases and pre-release versions"124 "of VirtualBox.</p>"));121 m_mapRadioButtons.value(VBoxUpdateData::BranchWithBetas)->setToolTip(tr("When chosen, you will be notified " 122 "about all new VirtualBox releases and " 123 "pre-release versions of VirtualBox.")); 125 124 m_mapRadioButtons.value(VBoxUpdateData::BranchWithBetas)->setText(tr("All New Releases and &Pre-Releases")); 126 125 }
Note:
See TracChangeset
for help on using the changeset viewer.