Gitweb links:
...log
http://git.netsurf-browser.org/netsurf.git/shortlog/85dea6eed305f0e02a807e1722c06b54f5c31488
...commit
http://git.netsurf-browser.org/netsurf.git/commit/85dea6eed305f0e02a807e1722c06b54f5c31488
...tree
http://git.netsurf-browser.org/netsurf.git/tree/85dea6eed305f0e02a807e1722c06b54f5c31488
The branch, master has been updated
via 85dea6eed305f0e02a807e1722c06b54f5c31488 (commit)
from b182cc7617a739f4b42293ef8e43485ef48d7cab (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commitdiff
http://git.netsurf-browser.org/netsurf.git/commit/?id=85dea6eed305f0e02a807e1722c06b54f5c31488
commit 85dea6eed305f0e02a807e1722c06b54f5c31488
Author: Vincent Sanders <[email protected]>
Commit: Vincent Sanders <[email protected]>
remove unecessary headers from browser window
diff --git a/desktop/browser_window.c b/desktop/browser_window.c
index 423ff99..546198f 100644
--- a/desktop/browser_window.c
+++ b/desktop/browser_window.c
@@ -1,7 +1,7 @@
/*
* Copyright 2008 Michael Drake <[email protected]>
* Copyright 2010 Daniel Silverstone <[email protected]>
- * Copyright 2010 Vincent Sanders <[email protected]>
+ * Copyright 2010-2020 Vincent Sanders <[email protected]>
*
* This file is part of NetSurf, http://www.netsurf-browser.org/
*
@@ -26,51 +26,41 @@
#include "utils/config.h"
-#include <assert.h>
-#include <limits.h>
-#include <stdbool.h>
-#include <stdint.h>
#include <stdlib.h>
-#include <string.h>
-#include <strings.h>
#include <math.h>
#include <nsutils/time.h>
-#include <nsutils/base64.h>
-#include "utils/corestrings.h"
+#include "utils/errors.h"
#include "utils/log.h"
+#include "utils/corestrings.h"
#include "utils/messages.h"
-#include "utils/nsurl.h"
-#include "utils/utils.h"
-#include "utils/utf8.h"
#include "utils/nsoption.h"
-#include "netsurf/misc.h"
+#include "netsurf/types.h"
+#include "netsurf/browser_window.h"
#include "netsurf/window.h"
-#include "netsurf/search.h"
+#include "netsurf/misc.h"
#include "netsurf/content.h"
+#include "netsurf/search.h"
#include "netsurf/plotters.h"
-#include "content/content_debug.h"
-#include "content/fetch.h"
+#include "content/content.h"
#include "content/hlcache.h"
#include "content/urldb.h"
-#include "css/utils.h"
-#include "html/form_internal.h"
+#include "content/content_debug.h"
+
#include "html/html.h"
+#include "html/form_internal.h"
#include "javascript/js.h"
-#include "desktop/cookie_manager.h"
-#include "desktop/browser_history.h"
#include "desktop/browser_private.h"
+#include "desktop/scrollbar.h"
+#include "desktop/gui_internal.h"
#include "desktop/download.h"
#include "desktop/frames.h"
#include "desktop/global_history.h"
+#include "desktop/textinput.h"
#include "desktop/hotlist.h"
#include "desktop/knockout.h"
-#include "desktop/scrollbar.h"
-#include "desktop/selection.h"
-#include "desktop/theme.h"
-#include "desktop/gui_internal.h"
-#include "desktop/textinput.h"
+#include "desktop/browser_history.h"
/**
* smallest scale that can be applied to a browser window
-----------------------------------------------------------------------
Summary of changes:
desktop/browser_window.c | 40 +++++++++++++++-------------------------
1 file changed, 15 insertions(+), 25 deletions(-)
diff --git a/desktop/browser_window.c b/desktop/browser_window.c
index 423ff99..546198f 100644
--- a/desktop/browser_window.c
+++ b/desktop/browser_window.c
@@ -1,7 +1,7 @@
/*
* Copyright 2008 Michael Drake <[email protected]>
* Copyright 2010 Daniel Silverstone <[email protected]>
- * Copyright 2010 Vincent Sanders <[email protected]>
+ * Copyright 2010-2020 Vincent Sanders <[email protected]>
*
* This file is part of NetSurf, http://www.netsurf-browser.org/
*
@@ -26,51 +26,41 @@
#include "utils/config.h"
-#include <assert.h>
-#include <limits.h>
-#include <stdbool.h>
-#include <stdint.h>
#include <stdlib.h>
-#include <string.h>
-#include <strings.h>
#include <math.h>
#include <nsutils/time.h>
-#include <nsutils/base64.h>
-#include "utils/corestrings.h"
+#include "utils/errors.h"
#include "utils/log.h"
+#include "utils/corestrings.h"
#include "utils/messages.h"
-#include "utils/nsurl.h"
-#include "utils/utils.h"
-#include "utils/utf8.h"
#include "utils/nsoption.h"
-#include "netsurf/misc.h"
+#include "netsurf/types.h"
+#include "netsurf/browser_window.h"
#include "netsurf/window.h"
-#include "netsurf/search.h"
+#include "netsurf/misc.h"
#include "netsurf/content.h"
+#include "netsurf/search.h"
#include "netsurf/plotters.h"
-#include "content/content_debug.h"
-#include "content/fetch.h"
+#include "content/content.h"
#include "content/hlcache.h"
#include "content/urldb.h"
-#include "css/utils.h"
-#include "html/form_internal.h"
+#include "content/content_debug.h"
+
#include "html/html.h"
+#include "html/form_internal.h"
#include "javascript/js.h"
-#include "desktop/cookie_manager.h"
-#include "desktop/browser_history.h"
#include "desktop/browser_private.h"
+#include "desktop/scrollbar.h"
+#include "desktop/gui_internal.h"
#include "desktop/download.h"
#include "desktop/frames.h"
#include "desktop/global_history.h"
+#include "desktop/textinput.h"
#include "desktop/hotlist.h"
#include "desktop/knockout.h"
-#include "desktop/scrollbar.h"
-#include "desktop/selection.h"
-#include "desktop/theme.h"
-#include "desktop/gui_internal.h"
-#include "desktop/textinput.h"
+#include "desktop/browser_history.h"
/**
* smallest scale that can be applied to a browser window
--
NetSurf Browser
_______________________________________________
netsurf-commits mailing list -- [email protected]
To unsubscribe send an email to [email protected]