summaryrefslogtreecommitdiff
path: root/beos
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2011-09-21 00:25:09 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2011-09-21 00:25:09 +0000
commitf27d5a3e15b5931f36b96bc5fb3d2572d339715d (patch)
treecb003adc645f8efccf31b1d0971f5e1ff842c814 /beos
parent0cf35ff7302525cffda2c9064b4077e80db9f663 (diff)
downloadnetsurf-f27d5a3e15b5931f36b96bc5fb3d2572d339715d.tar.gz
netsurf-f27d5a3e15b5931f36b96bc5fb3d2572d339715d.tar.bz2
Remove gui_multitask
svn path=/trunk/netsurf/; revision=12828
Diffstat (limited to 'beos')
-rw-r--r--beos/beos_gui.cpp12
-rw-r--r--beos/beos_gui.h1
2 files changed, 0 insertions, 13 deletions
diff --git a/beos/beos_gui.cpp b/beos/beos_gui.cpp
index 9e3136fdb..4740668d0 100644
--- a/beos/beos_gui.cpp
+++ b/beos/beos_gui.cpp
@@ -91,7 +91,6 @@ void gui_init(int argc, char** argv);
// enable using resources instead of files
#define USE_RESOURCES 1
-bool gui_in_multitask = false;
bool replicated = false; /**< if we are running as a replicant */
char *default_stylesheet_url;
@@ -759,17 +758,6 @@ void gui_poll(bool active)
}
-void gui_multitask(void)
-{
- gui_in_multitask = true;
-#if 0 /* GTK */
- while (beos_events_pending())
- beos_main_iteration();
-#endif
- gui_in_multitask = false;
-}
-
-
void gui_quit(void)
{
CALLED();
diff --git a/beos/beos_gui.h b/beos/beos_gui.h
index a5cb64322..6bbfa1dd1 100644
--- a/beos/beos_gui.h
+++ b/beos/beos_gui.h
@@ -29,7 +29,6 @@
#define CALLED() fprintf(stderr, "%s()\n", __FUNCTION__);
-extern bool gui_in_multitask;
extern bool replicated;
#if 0 /* GTK */