blob: 53eccca5a1b8b59c83be3466a8f320c12fdb6b74 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
Description: Disable notifications about outdated guest additions.
Author: Felix Geyer <fgeyer@debian.org>
--- a/src/VBox/Additions/x11/VBoxClient/hostversion.cpp
+++ b/src/VBox/Additions/x11/VBoxClient/hostversion.cpp
@@ -43,6 +43,8 @@ public:
virtual int showNotify(const char *pcHeader, const char *pcBody)
{
+ return VINF_SUCCESS;
+
int rc;
# ifdef VBOX_WITH_DBUS
DBusConnection *conn;
|