forked from pool/virtualbox
a6e4c15ca7
updated to version 4.2.16 OBS-URL: https://build.opensuse.org/request/show/184179 OBS-URL: https://build.opensuse.org/package/show/Virtualization/virtualbox?expand=0&rev=133
44 lines
2.1 KiB
Diff
44 lines
2.1 KiB
Diff
Index: src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsUpdate.cpp
|
|
===================================================================
|
|
--- src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsUpdate.cpp.orig
|
|
+++ src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsUpdate.cpp
|
|
@@ -63,7 +63,7 @@ void UIGlobalSettingsUpdate::loadToCache
|
|
void UIGlobalSettingsUpdate::getFromCache()
|
|
{
|
|
/* Apply internal variables data to QWidget(s): */
|
|
- m_pEnableUpdateCheckbox->setChecked(m_cache.m_fCheckEnabled);
|
|
+ m_pEnableUpdateCheckbox->setChecked(false);
|
|
if (m_pEnableUpdateCheckbox->isChecked())
|
|
{
|
|
m_pUpdatePeriodCombo->setCurrentIndex(m_cache.m_periodIndex);
|
|
Index: src/VBox/Frontends/VirtualBox/src/settings/UISettingsDialogSpecific.cpp
|
|
===================================================================
|
|
--- src/VBox/Frontends/VirtualBox/src/settings/UISettingsDialogSpecific.cpp.orig
|
|
+++ src/VBox/Frontends/VirtualBox/src/settings/UISettingsDialogSpecific.cpp
|
|
@@ -342,15 +342,6 @@ UISettingsDialogGlobal::UISettingsDialog
|
|
iPageIndex, "#input", pSettingsPage);
|
|
break;
|
|
}
|
|
- /* Update page: */
|
|
- case GlobalSettingsPageType_Update:
|
|
- {
|
|
- pSettingsPage = new UIGlobalSettingsUpdate;
|
|
- addItem(":/refresh_32px.png", ":/refresh_disabled_32px.png",
|
|
- ":/refresh_16px.png", ":/refresh_disabled_16px.png",
|
|
- iPageIndex, "#update", pSettingsPage);
|
|
- break;
|
|
- }
|
|
/* Language page: */
|
|
case GlobalSettingsPageType_Language:
|
|
{
|
|
@@ -489,9 +480,6 @@ void UISettingsDialogGlobal::retranslate
|
|
/* Input page: */
|
|
m_pSelector->setItemText(GlobalSettingsPageType_Input, tr("Input"));
|
|
|
|
- /* Update page: */
|
|
- m_pSelector->setItemText(GlobalSettingsPageType_Update, tr("Update"));
|
|
-
|
|
/* Language page: */
|
|
m_pSelector->setItemText(GlobalSettingsPageType_Language, tr("Language"));
|
|
|