From 33c7df0c40023cb1b0c17084680a21ee8e0229ea Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Fri, 15 Apr 2016 22:50:28 +0100 Subject: complete the rename of the gui browser table When the operations tables were created the browser table was renamed to miscellaneous except the actual rename patch was never applied, this fixes that situation. --- content/fetch.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'content/fetch.c') diff --git a/content/fetch.c b/content/fetch.c index 47e6fc88e..415ca2651 100644 --- a/content/fetch.c +++ b/content/fetch.c @@ -277,7 +277,7 @@ static void fetcher_poll(void *unused) } /* schedule active fetchers to run again in 10ms */ - guit->browser->schedule(SCHEDULE_TIME, fetcher_poll, NULL); + guit->misc->schedule(SCHEDULE_TIME, fetcher_poll, NULL); } } @@ -428,7 +428,7 @@ nserror fetcher_fdset(fd_set *read_fd_set, * select on. All the other fetchers continue to need * polling frequently. */ - guit->browser->schedule(FDSET_TIMEOUT, fetcher_poll, NULL); + guit->misc->schedule(FDSET_TIMEOUT, fetcher_poll, NULL); } *maxfd_out = maxfd; @@ -565,7 +565,7 @@ fetch_start(nsurl *url, if (fetch_dispatch_jobs()) { FETCH_LOG("scheduling poll"); /* schedule active fetchers to run again in 10ms */ - guit->browser->schedule(10, fetcher_poll, NULL); + guit->misc->schedule(10, fetcher_poll, NULL); } *fetch_out = fetch; -- cgit v1.2.3