summaryrefslogtreecommitdiff
path: root/atari/misc.c
diff options
context:
space:
mode:
authorOle Loots <ole@monochrom.net>2011-06-30 20:20:27 +0000
committerOle Loots <ole@monochrom.net>2011-06-30 20:20:27 +0000
commit5639e1e04772db96a7772ec8ba4facf5bf5e6d40 (patch)
treee142919bcb59213ac2d1f8be06376bd72cd0d844 /atari/misc.c
parente9d4b68e2820529b41678173d43815d12f2cd69e (diff)
downloadnetsurf-5639e1e04772db96a7772ec8ba4facf5bf5e6d40.tar.gz
netsurf-5639e1e04772db96a7772ec8ba4facf5bf5e6d40.tar.bz2
removed preparations for frames. (will be handled within the core)
svn path=/trunk/netsurf/; revision=12550
Diffstat (limited to 'atari/misc.c')
-rwxr-xr-xatari/misc.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/atari/misc.c b/atari/misc.c
index 35f05d760..fc1d6a661 100755
--- a/atari/misc.c
+++ b/atari/misc.c
@@ -100,22 +100,6 @@ bool path_add_part(char *path, int length, const char *newpart)
return true;
}
-#define IS_TOPLEVEL_BROWSER_WIN( gw ) (gw->root->handle == win && gw->parent == NULL )
-struct gui_window * find_root_gui_window( WINDOW * win )
-{
-
- struct gui_window * gw;
- gw = window_list;
- while( gw != NULL ) {
- if( IS_TOPLEVEL_BROWSER_WIN( gw ) ) {
- return( gw );
- }
- else
- gw = gw->next;
- }
- return( NULL );
-}
-
struct gui_window * find_cmp_window( COMPONENT * c )
{