summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2013-04-15 23:40:08 +0100
committerChris Young <chris@unsatisfactorysoftware.co.uk>2013-04-15 23:40:08 +0100
commit6090e36da2b659357ed1ac39b61dd2ba24c313f8 (patch)
tree3df73a557cfe62ac32b6101a73b8341884a50240
parent3b53d22260fd44ba69acacc61b2e1737ab6cc733 (diff)
downloadnetsurf-6090e36da2b659357ed1ac39b61dd2ba24c313f8.tar.gz
netsurf-6090e36da2b659357ed1ac39b61dd2ba24c313f8.tar.bz2
Revert changes to netsurf.c
-rw-r--r--desktop/netsurf.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/desktop/netsurf.c b/desktop/netsurf.c
index 120bda9e3..0b1cffe0a 100644
--- a/desktop/netsurf.c
+++ b/desktop/netsurf.c
@@ -27,7 +27,6 @@
#include <libwapcaplet/libwapcaplet.h>
#include "utils/config.h"
-#include "utils/schedule.h"
#include "utils/utsname.h"
#include "content/content_factory.h"
#include "content/fetch.h"
@@ -240,10 +239,6 @@ nserror netsurf_init(int *pargc,
return ret;
}
-static void netsurf_fetch_callback(void *p)
-{
- hlcache_poll();
-}
/**
* Gui NetSurf main loop.
@@ -251,8 +246,6 @@ static void netsurf_fetch_callback(void *p)
int netsurf_main_loop(void)
{
while (!netsurf_quit) {
- if(fetch_active)
- schedule(0, netsurf_fetch_callback, NULL);
gui_poll(fetch_active);
hlcache_poll();
}