summaryrefslogtreecommitdiff
path: root/gtk/window.c
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2015-04-12 21:42:33 +0100
committerVincent Sanders <vince@kyllikki.org>2015-04-12 21:42:33 +0100
commit41331542154594970fb6c36bc1c147c244fe9279 (patch)
tree74a826f46dd301e9614983a8c4c5e87ac84fccab /gtk/window.c
parentde09dc8efdfdb4ce27c85733cfec139a52d70776 (diff)
downloadnetsurf-41331542154594970fb6c36bc1c147c244fe9279.tar.gz
netsurf-41331542154594970fb6c36bc1c147c244fe9279.tar.bz2
fix documentation errors in gtk introduced by recent updates.
Diffstat (limited to 'gtk/window.c')
-rw-r--r--gtk/window.c13
1 files changed, 11 insertions, 2 deletions
diff --git a/gtk/window.c b/gtk/window.c
index 685ff913a..7fa089a5c 100644
--- a/gtk/window.c
+++ b/gtk/window.c
@@ -17,6 +17,11 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
+/**
+ * \file
+ * Implementation of gtk windowing.
+ */
+
#include <inttypes.h>
#include <string.h>
#include <limits.h>
@@ -60,7 +65,8 @@ static void nsgtk_select_menu_clicked(GtkCheckMenuItem *checkmenuitem,
gpointer user_data);
struct gui_window {
- /** The gtk scaffold object containing menu, buttons, url bar, [tabs],
+ /**
+ * The gtk scaffold object containing menu, buttons, url bar, [tabs],
* drawing area, etc that may contain one or more gui_windows.
*/
struct nsgtk_scaffolding *scaffold;
@@ -118,7 +124,10 @@ struct gui_window {
struct gui_window *next, *prev;
};
-struct gui_window *window_list = NULL; /**< first entry in win list*/
+/**< first entry in window list */
+struct gui_window *window_list = NULL;
+
+/** flag controlling opening of tabs in teh background */
int temp_open_background = -1;
struct nsgtk_scaffolding *nsgtk_get_scaffold(struct gui_window *g)