void-packages/srcpkgs/virtualbox-ose/patches/015-no-update.patch

105 lines
3.8 KiB
Diff

Description: Disable "Check for Updates" action.
Bug-Ubuntu: https://bugs.launchpad.net/bugs/272212
Author: Daniel Hahler <ubuntu@thequod.de>, Felix Geyer <fgeyer@debian.org>, Gianfranco Costamagna <locutusofborg@debian.org>
--- a/doc/manual/en_US/user_Introduction.xml
+++ b/doc/manual/en_US/user_Introduction.xml
@@ -6090,14 +6090,14 @@
<xref linkend="specialcharacters"/>.
</para>
</listitem>
-
+ <!--
<listitem>
<para>
<emphasis role="bold">Update.</emphasis> Enables you to
specify various settings for Automatic Updates.
</para>
</listitem>
-
+ -->
<listitem>
<para>
<emphasis role="bold">Language.</emphasis> Enables you to
--- a/src/VBox/Frontends/VirtualBox/src/extradata/UIExtraDataManager.cpp
+++ b/src/VBox/Frontends/VirtualBox/src/extradata/UIExtraDataManager.cpp
@@ -2421,7 +2421,7 @@ QString UIExtraDataManager::preventBetaB
bool UIExtraDataManager::applicationUpdateEnabled()
{
/* 'True' unless 'restriction' feature allowed: */
- return !isFeatureAllowed(GUI_PreventApplicationUpdate);
+ return false;
}
QString UIExtraDataManager::applicationUpdateData()
--- a/src/VBox/Frontends/VirtualBox/src/settings/UISettingsDialogSpecific.cpp
+++ b/src/VBox/Frontends/VirtualBox/src/settings/UISettingsDialogSpecific.cpp
@@ -47,10 +47,10 @@
#ifdef VBOX_WS_WIN
# include "UIGlobalSettingsInterface.h"
#endif
-#ifdef VBOX_GUI_WITH_NETWORK_MANAGER
-# include "UIGlobalSettingsProxy.h"
-# include "UIGlobalSettingsUpdate.h"
-#endif
+//#ifdef VBOX_GUI_WITH_NETWORK_MANAGER
+//# include "UIGlobalSettingsProxy.h"
+//# include "UIGlobalSettingsUpdate.h"
+//#endif
/* GUI includes: Machine Settings: */
#include "UIMachineSettingsAudio.h"
@@ -99,7 +99,7 @@ void UISettingsDialogGlobal::retranslate
#ifdef VBOX_GUI_WITH_NETWORK_MANAGER
/* Update page: */
- m_pSelector->setItemText(GlobalSettingsPageType_Update, tr("Update"));
+ //m_pSelector->setItemText(GlobalSettingsPageType_Update, tr("Update"));
#endif
/* Language page: */
@@ -110,7 +110,7 @@ void UISettingsDialogGlobal::retranslate
#ifdef VBOX_GUI_WITH_NETWORK_MANAGER
/* Proxy page: */
- m_pSelector->setItemText(GlobalSettingsPageType_Proxy, tr("Proxy"));
+ //m_pSelector->setItemText(GlobalSettingsPageType_Proxy, tr("Proxy"));
#endif
#ifdef VBOX_WS_WIN
@@ -226,14 +226,14 @@ void UISettingsDialogGlobal::prepare()
}
#ifdef VBOX_GUI_WITH_NETWORK_MANAGER
/* Update page: */
- case GlobalSettingsPageType_Update:
+ /*case GlobalSettingsPageType_Update:
{
pSettingsPage = new UIGlobalSettingsUpdate;
addItem(":/refresh_32px.png", ":/refresh_24px.png", ":/refresh_16px.png",
iPageIndex, "#update", pSettingsPage);
addPageHelpKeyword(iPageIndex, "preferences");
break;
- }
+ }*/
#endif /* VBOX_GUI_WITH_NETWORK_MANAGER */
/* Language page: */
case GlobalSettingsPageType_Language:
@@ -255,14 +255,14 @@ void UISettingsDialogGlobal::prepare()
}
#ifdef VBOX_GUI_WITH_NETWORK_MANAGER
/* Proxy page: */
- case GlobalSettingsPageType_Proxy:
+ /*case GlobalSettingsPageType_Proxy:
{
pSettingsPage = new UIGlobalSettingsProxy;
addItem(":/proxy_32px.png", ":/proxy_24px.png", ":/proxy_16px.png",
iPageIndex, "#proxy", pSettingsPage);
addPageHelpKeyword(iPageIndex, "preferences");
break;
- }
+ }*/
#endif /* VBOX_GUI_WITH_NETWORK_MANAGER */
#ifdef VBOX_WS_WIN
/* Interface page: */