Fix mouse.h file description. Add iframe comment.

svn path=/trunk/netsurf/; revision=10571
This commit is contained in:
Michael Drake 2010-06-09 09:53:07 +00:00
parent 9bc784e8d7
commit 0642cdafc2
2 changed files with 3 additions and 1 deletions

View File

@ -19,7 +19,7 @@
*/
/** \file
* Browser window creation and manipulation (interface).
* Core mouse state.
*/
#ifndef _NETSURF_DESKTOP_MOUSE_H_

View File

@ -1629,6 +1629,8 @@ bool box_iframe(BOX_SPECIAL_PARAMS)
iframe->url = talloc_strdup(content, url);
iframe->scrolling = SCROLLING_AUTO;
iframe->border = true;
/* Add this iframe to the linked list of iframes */
iframe->next = content->data.html.iframe;
content->data.html.iframe = iframe;