2011-08-28 09:05:37 +02:00
|
|
|
--- src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsUpdate.cpp
|
|
|
|
+++ src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsUpdate.cpp
|
2011-01-16 07:19:36 +01:00
|
|
|
@@ -63,7 +63,7 @@ void UIGlobalSettingsUpdate::loadToCache
|
|
|
|
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): */
|
|
|
|
- m_pEnableUpdateCheckbox->setChecked(m_cache.m_fCheckEnabled);
|
|
|
|
+ m_pEnableUpdateCheckbox->setChecked(false);
|
|
|
|
if (m_pEnableUpdateCheckbox->isChecked())
|
2010-12-23 11:08:49 +01:00
|
|
|
{
|
2011-01-16 07:19:36 +01:00
|
|
|
m_pUpdatePeriodCombo->setCurrentIndex(m_cache.m_periodIndex);
|
2011-08-28 09:05:37 +02:00
|
|
|
--- src/VBox/Frontends/VirtualBox/src/settings/UISettingsDialogSpecific.h
|
|
|
|
+++ src/VBox/Frontends/VirtualBox/src/settings/UISettingsDialogSpecific.h
|
2011-07-21 12:51:05 +02:00
|
|
|
@@ -34,7 +34,6 @@ public:
|
|
|
|
{
|
|
|
|
GLSettingsPage_General = 0,
|
|
|
|
GLSettingsPage_Input,
|
|
|
|
- GLSettingsPage_Update,
|
|
|
|
GLSettingsPage_Language,
|
|
|
|
GLSettingsPage_USB,
|
|
|
|
GLSettingsPage_Network,
|
2011-08-28 09:05:37 +02:00
|
|
|
--- src/VBox/Frontends/VirtualBox/src/settings/UISettingsDialogSpecific.cpp
|
|
|
|
+++ src/VBox/Frontends/VirtualBox/src/settings/UISettingsDialogSpecific.cpp
|
2011-07-21 12:51:05 +02:00
|
|
|
@@ -340,15 +340,6 @@ UISettingsDialogGlobal::UISettingsDialog
|
|
|
|
iPageIndex, "#input", pSettingsPage);
|
2011-01-17 13:39:27 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
- /* Update page: */
|
|
|
|
- case GLSettingsPage_Update:
|
|
|
|
- {
|
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;
|
|
|
|
- }
|
|
|
|
/* Language page: */
|
|
|
|
case GLSettingsPage_Language:
|
|
|
|
{
|
2011-07-21 12:51:05 +02:00
|
|
|
@@ -481,9 +472,6 @@ void UISettingsDialogGlobal::retranslate
|
2011-01-17 13:39:27 +01:00
|
|
|
/* Input page: */
|
|
|
|
m_pSelector->setItemText(GLSettingsPage_Input, tr("Input"));
|
|
|
|
|
|
|
|
- /* Update page: */
|
|
|
|
- m_pSelector->setItemText(GLSettingsPage_Update, tr("Update"));
|
|
|
|
-
|
|
|
|
/* Language page: */
|
|
|
|
m_pSelector->setItemText(GLSettingsPage_Language, tr("Language"));
|
|
|
|
|