2019-01-28 21:37:13 +01:00
|
|
|
Index: VirtualBox-6.0.0/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsUpdate.cpp
|
2016-07-26 18:15:55 +02:00
|
|
|
===================================================================
|
2019-01-28 21:37:13 +01:00
|
|
|
--- VirtualBox-6.0.0.orig/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsUpdate.cpp
|
|
|
|
+++ VirtualBox-6.0.0/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsUpdate.cpp
|
2017-12-29 20:22:29 +01:00
|
|
|
@@ -110,8 +110,8 @@ void UIGlobalSettingsUpdate::getFromCach
|
|
|
|
/* Get old update data from the cache: */
|
|
|
|
const UIDataSettingsGlobalUpdate &oldUpdateData = m_pCache->base();
|
|
|
|
|
|
|
|
- /* Load old update data from the cache: */
|
|
|
|
- m_pCheckBoxUpdate->setChecked(oldUpdateData.m_fCheckEnabled);
|
|
|
|
+ /* Disable old update data from the cache: */
|
2014-01-19 01:52:50 +01:00
|
|
|
+ m_pCheckBoxUpdate->setChecked(false);
|
|
|
|
if (m_pCheckBoxUpdate->isChecked())
|
2010-12-23 11:08:49 +01:00
|
|
|
{
|
2017-12-29 20:22:29 +01:00
|
|
|
m_pComboBoxUpdatePeriod->setCurrentIndex(oldUpdateData.m_periodIndex);
|
2019-01-28 21:37:13 +01:00
|
|
|
Index: VirtualBox-6.0.0/src/VBox/Frontends/VirtualBox/src/settings/UISettingsDialogSpecific.cpp
|
2016-07-26 18:15:55 +02:00
|
|
|
===================================================================
|
2019-01-28 21:37:13 +01:00
|
|
|
--- VirtualBox-6.0.0.orig/src/VBox/Frontends/VirtualBox/src/settings/UISettingsDialogSpecific.cpp
|
|
|
|
+++ VirtualBox-6.0.0/src/VBox/Frontends/VirtualBox/src/settings/UISettingsDialogSpecific.cpp
|
|
|
|
@@ -91,8 +91,6 @@ void UISettingsDialogGlobal::retranslate
|
|
|
|
m_pSelector->setItemText(GlobalSettingsPageType_Input, tr("Input"));
|
|
|
|
|
|
|
|
#ifdef VBOX_GUI_WITH_NETWORK_MANAGER
|
|
|
|
- /* Update page: */
|
|
|
|
- m_pSelector->setItemText(GlobalSettingsPageType_Update, tr("Update"));
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Language page: */
|
|
|
|
@@ -208,16 +206,6 @@ void UISettingsDialogGlobal::prepare()
|
2015-07-11 13:43:54 +02:00
|
|
|
iPageIndex, "#input", pSettingsPage);
|
2011-01-17 13:39:27 +01:00
|
|
|
break;
|
|
|
|
}
|
2015-07-11 13:43:54 +02:00
|
|
|
-#ifdef VBOX_GUI_WITH_NETWORK_MANAGER
|
2011-01-17 13:39:27 +01:00
|
|
|
- /* Update page: */
|
2013-07-24 12:57:58 +02:00
|
|
|
- case GlobalSettingsPageType_Update:
|
2011-01-17 13:39:27 +01:00
|
|
|
- {
|
2011-07-21 12:51:05 +02:00
|
|
|
- pSettingsPage = new UIGlobalSettingsUpdate;
|
2015-07-11 13:43:54 +02:00
|
|
|
- addItem(":/refresh_32px.png", ":/refresh_24px.png", ":/refresh_16px.png",
|
2011-07-21 12:51:05 +02:00
|
|
|
- iPageIndex, "#update", pSettingsPage);
|
2011-01-17 13:39:27 +01:00
|
|
|
- break;
|
|
|
|
- }
|
2015-07-11 13:43:54 +02:00
|
|
|
-#endif /* VBOX_GUI_WITH_NETWORK_MANAGER */
|
2011-01-17 13:39:27 +01:00
|
|
|
/* Language page: */
|
2013-07-24 12:57:58 +02:00
|
|
|
case GlobalSettingsPageType_Language:
|
2015-07-11 13:43:54 +02:00
|
|
|
{
|