forked from pool/virtualbox
30517dfda7
update package to virtualbox 4.1.0 OBS-URL: https://build.opensuse.org/request/show/76631 OBS-URL: https://build.opensuse.org/package/show/Virtualization/virtualbox?expand=0&rev=51
70 lines
3.4 KiB
Diff
70 lines
3.4 KiB
Diff
Index: VirtualBox-4.1.0_OSE/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsUpdate.cpp
|
|
===================================================================
|
|
--- VirtualBox-4.1.0_OSE.orig/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsUpdate.cpp
|
|
+++ VirtualBox-4.1.0_OSE/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: VirtualBox-4.1.0_OSE/src/VBox/Frontends/VirtualBox/src/VBoxHelpActions.cpp
|
|
===================================================================
|
|
--- VirtualBox-4.1.0_OSE.orig/src/VBox/Frontends/VirtualBox/src/VBoxHelpActions.cpp
|
|
+++ VirtualBox-4.1.0_OSE/src/VBox/Frontends/VirtualBox/src/VBoxHelpActions.cpp
|
|
@@ -92,8 +92,7 @@ void VBoxHelpActions::addTo (QMenu *aMen
|
|
#endif
|
|
|
|
aMenu->addAction (updateAction);
|
|
- updateAction->setEnabled (vboxGlobal().virtualBox().
|
|
- GetExtraData (VBoxDefs::GUI_UpdateDlgWinID).isEmpty());
|
|
+ updateAction->setDisabled ( true );
|
|
|
|
#ifndef Q_WS_MAC
|
|
aMenu->addSeparator();
|
|
Index: VirtualBox-4.1.0_OSE/src/VBox/Frontends/VirtualBox/src/settings/UISettingsDialogSpecific.h
|
|
===================================================================
|
|
--- VirtualBox-4.1.0_OSE.orig/src/VBox/Frontends/VirtualBox/src/settings/UISettingsDialogSpecific.h
|
|
+++ VirtualBox-4.1.0_OSE/src/VBox/Frontends/VirtualBox/src/settings/UISettingsDialogSpecific.h
|
|
@@ -34,7 +34,6 @@ public:
|
|
{
|
|
GLSettingsPage_General = 0,
|
|
GLSettingsPage_Input,
|
|
- GLSettingsPage_Update,
|
|
GLSettingsPage_Language,
|
|
GLSettingsPage_USB,
|
|
GLSettingsPage_Network,
|
|
Index: VirtualBox-4.1.0_OSE/src/VBox/Frontends/VirtualBox/src/settings/UISettingsDialogSpecific.cpp
|
|
===================================================================
|
|
--- VirtualBox-4.1.0_OSE.orig/src/VBox/Frontends/VirtualBox/src/settings/UISettingsDialogSpecific.cpp
|
|
+++ VirtualBox-4.1.0_OSE/src/VBox/Frontends/VirtualBox/src/settings/UISettingsDialogSpecific.cpp
|
|
@@ -340,15 +340,6 @@ UISettingsDialogGlobal::UISettingsDialog
|
|
iPageIndex, "#input", pSettingsPage);
|
|
break;
|
|
}
|
|
- /* Update page: */
|
|
- case GLSettingsPage_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 GLSettingsPage_Language:
|
|
{
|
|
@@ -481,9 +472,6 @@ void UISettingsDialogGlobal::retranslate
|
|
/* 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"));
|
|
|