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