summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Geyer <fgeyer@debian.org>2014-02-03 19:19:50 +0100
committerFelix Geyer <fgeyer@debian.org>2014-02-03 19:19:50 +0100
commitf19c08573ab1c4eda4c9675b04974c2d324d173c (patch)
treeb38554120886cd5b6df3de5116706fe929c619de
parenta239e77e5361b5fc179610db12d0dddf4b3db676 (diff)
downloadvirtualbox-f19c08573ab1c4eda4c9675b04974c2d324d173c.tar.gz
Refresh 16-no-update.patch.
-rw-r--r--debian/changelog1
-rw-r--r--debian/patches/16-no-update.patch14
2 files changed, 8 insertions, 7 deletions
diff --git a/debian/changelog b/debian/changelog
index ace7871b4..dd9d0aa8b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -4,6 +4,7 @@ virtualbox (4.3.6-dfsg-1) UNRELEASED; urgency=medium
* Drop compatibility with old X11 server packages.
* Enable hardened build flags using hardening-wrapper. The upstream build
system ignores the *FLAGS env variables. (Closes: #736459)
+ * Refresh 16-no-update.patch.
-- Felix Geyer <fgeyer@debian.org> Sat, 01 Feb 2014 18:50:13 +0100
diff --git a/debian/patches/16-no-update.patch b/debian/patches/16-no-update.patch
index 7b82a6d84..78f70553a 100644
--- a/debian/patches/16-no-update.patch
+++ b/debian/patches/16-no-update.patch
@@ -21,25 +21,25 @@ Index: virtualbox/src/VBox/Frontends/VirtualBox/src/globals/UIActionPool.cpp
--- virtualbox.orig/src/VBox/Frontends/VirtualBox/src/globals/UIActionPool.cpp 2013-11-19 03:42:12.725479132 -0500
+++ virtualbox/src/VBox/Frontends/VirtualBox/src/globals/UIActionPool.cpp 2013-11-19 03:42:12.721479132 -0500
@@ -650,7 +650,6 @@
- m_pool[UIActionIndex_Simple_WebSite] = new UIActionSimpleWebSite(this);
m_pool[UIActionIndex_Simple_ResetWarnings] = new UIActionSimpleResetWarnings(this);
+ #ifdef VBOX_GUI_WITH_NETWORK_MANAGER
m_pool[UIActionIndex_Simple_NetworkAccessManager] = new UIActionSimpleNetworkAccessManager(this);
- m_pool[UIActionIndex_Simple_CheckForUpdates] = new UIActionSimpleCheckForUpdates(this);
+ #endif /* VBOX_GUI_WITH_NETWORK_MANAGER */
m_pool[UIActionIndex_Simple_About] = new UIActionSimpleAbout(this);
}
-
Index: virtualbox/src/VBox/Frontends/VirtualBox/src/globals/UIActionPool.h
===================================================================
--- virtualbox.orig/src/VBox/Frontends/VirtualBox/src/globals/UIActionPool.h 2013-11-19 03:42:12.725479132 -0500
+++ virtualbox/src/VBox/Frontends/VirtualBox/src/globals/UIActionPool.h 2013-11-19 03:42:12.721479132 -0500
@@ -58,7 +58,6 @@
- UIActionIndex_Simple_WebSite,
UIActionIndex_Simple_ResetWarnings,
+ #ifdef VBOX_GUI_WITH_NETWORK_MANAGER
UIActionIndex_Simple_NetworkAccessManager,
- UIActionIndex_Simple_CheckForUpdates,
+ #endif /* VBOX_GUI_WITH_NETWORK_MANAGER */
UIActionIndex_Simple_About,
- /* Maximum index: */
Index: virtualbox/src/VBox/Frontends/VirtualBox/src/selector/UISelectorWindow.cpp
===================================================================
--- virtualbox.orig/src/VBox/Frontends/VirtualBox/src/selector/UISelectorWindow.cpp 2013-11-19 03:42:12.725479132 -0500
@@ -54,17 +54,17 @@ Index: virtualbox/src/VBox/Frontends/VirtualBox/src/selector/UISelectorWindow.cp
- pMenu->addAction(m_pUpdateAction);
- else
- m_pUpdateAction->setEnabled(false);
+ #endif /* VBOX_GUI_WITH_NETWORK_MANAGER */
#ifndef Q_WS_MAC
pMenu->addSeparator();
- #endif /* !Q_WS_MAC */
@@ -1462,7 +1456,6 @@
- connect(m_pWebAction, SIGNAL(triggered()), &msgCenter(), SLOT(sltShowHelpWebDialog()));
connect(m_pResetWarningsAction, SIGNAL(triggered()), &msgCenter(), SLOT(sltResetSuppressedMessages()));
+ #ifdef VBOX_GUI_WITH_NETWORK_MANAGER
connect(m_pNetworkAccessManager, SIGNAL(triggered()), gNetworkManager, SLOT(show()));
- connect(m_pUpdateAction, SIGNAL(triggered()), gUpdateManager, SLOT(sltForceCheck()));
+ #endif /* VBOX_GUI_WITH_NETWORK_MANAGER */
connect(m_pAboutAction, SIGNAL(triggered()), &msgCenter(), SLOT(sltShowHelpAboutDialog()));
- /* Status-bar connections: */
Index: virtualbox/src/VBox/Frontends/VirtualBox/src/settings/UISettingsDialogSpecific.cpp
===================================================================
--- virtualbox.orig/src/VBox/Frontends/VirtualBox/src/settings/UISettingsDialogSpecific.cpp 2013-11-19 03:42:12.725479132 -0500