2012-10-02 16:03:09 +02:00
|
|
|
Index: src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsUpdate.cpp
|
|
|
|
===================================================================
|
|
|
|
--- src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsUpdate.cpp.orig
|
2011-08-28 09:05:37 +02:00
|
|
|
+++ src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsUpdate.cpp
|
2014-01-19 01:52:50 +01:00
|
|
|
@@ -62,7 +62,7 @@ void UIGlobalSettingsUpdate::loadToCache
|
2011-01-16 07:19:36 +01:00
|
|
|
void UIGlobalSettingsUpdate::getFromCache()
|
2010-12-23 11:08:49 +01:00
|
|
|
{
|
2011-01-16 07:19:36 +01:00
|
|
|
/* Apply internal variables data to QWidget(s): */
|
2014-01-19 01:52:50 +01:00
|
|
|
- m_pCheckBoxUpdate->setChecked(m_cache.m_fCheckEnabled);
|
|
|
|
+ m_pCheckBoxUpdate->setChecked(false);
|
|
|
|
if (m_pCheckBoxUpdate->isChecked())
|
2010-12-23 11:08:49 +01:00
|
|
|
{
|
2014-01-19 01:52:50 +01:00
|
|
|
m_pComboBoxUpdatePeriod->setCurrentIndex(m_cache.m_periodIndex);
|
2012-10-02 16:03:09 +02:00
|
|
|
Index: src/VBox/Frontends/VirtualBox/src/settings/UISettingsDialogSpecific.cpp
|
|
|
|
===================================================================
|
|
|
|
--- src/VBox/Frontends/VirtualBox/src/settings/UISettingsDialogSpecific.cpp.orig
|
2011-08-28 09:05:37 +02:00
|
|
|
+++ src/VBox/Frontends/VirtualBox/src/settings/UISettingsDialogSpecific.cpp
|
2014-01-19 01:52:50 +01:00
|
|
|
@@ -359,15 +359,6 @@ UISettingsDialogGlobal::UISettingsDialog
|
2011-01-17 13:39:27 +01:00
|
|
|
break;
|
|
|
|
}
|
2014-01-19 01:52:50 +01: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;
|
2011-01-17 13:39:27 +01:00
|
|
|
- addItem(":/refresh_32px.png", ":/refresh_disabled_32px.png",
|
|
|
|
- ":/refresh_16px.png", ":/refresh_disabled_16px.png",
|
2011-07-21 12:51:05 +02:00
|
|
|
- iPageIndex, "#update", pSettingsPage);
|
2011-01-17 13:39:27 +01:00
|
|
|
- break;
|
|
|
|
- }
|
2014-01-19 01:52:50 +01: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:
|
2014-01-19 01:52:50 +01:00
|
|
|
@@ -498,8 +489,6 @@ void UISettingsDialogGlobal::retranslate
|
2013-07-24 12:57:58 +02:00
|
|
|
m_pSelector->setItemText(GlobalSettingsPageType_Input, tr("Input"));
|
2011-01-17 13:39:27 +01:00
|
|
|
|
2014-01-19 01:52:50 +01: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
|
|
|
- m_pSelector->setItemText(GlobalSettingsPageType_Update, tr("Update"));
|
2014-01-19 01:52:50 +01:00
|
|
|
#endif /* VBOX_GUI_WITH_NETWORK_MANAGER */
|
2011-01-17 13:39:27 +01:00
|
|
|
|
2014-01-19 01:52:50 +01:00
|
|
|
/* Language page: */
|