From 7a3a8c18922d035370653bf6269af40002a3c08b Mon Sep 17 00:00:00 2001 From: Matthias Melcher Date: Thu, 27 Dec 2007 11:02:27 +0000 Subject: [PATCH] STR 1815: Added begin() and end() information to the Basics chapter. Hope you'll like it git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@6007 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- CHANGES | 2 +- documentation/basics.html | 23 +++++++++++++++++++++-- 2 files changed, 22 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index f63162e37..2a949d80f 100644 --- a/CHANGES +++ b/CHANGES @@ -4,7 +4,7 @@ CHANGES IN FLTK 1.1.8 STR #1457, STR #1458, STR #1460, STR #1481, STR #1578, STR #1639, STR #1645, STR #1644, STR #1792, STR #1793, STR #1742, STR #1777, STR #1794, STR #1827, STR #1843, - STR #1796) + STR #1796, STR #1815) - Fixed 16 bit PNM image support (STR #1847) - Fixed exposure event on zero size windows (STR #1824) - Fixed overlay offset for OS X Quartz (STR #1729) diff --git a/documentation/basics.html b/documentation/basics.html index 522e7d845..efb8d6926 100644 --- a/documentation/basics.html +++ b/documentation/basics.html @@ -45,7 +45,8 @@ window. All following widgets will automatically be children of this window.

Fl_Window *window = new Fl_Window(300,180); -

Then we create a box with the "Hello, World!" string in it.

+

Then we create a box with the "Hello, World!" string in it. FLTK automatically adds +the new box to window, the current grouping widget.

-

We tell FLTK that we will not add any more widgets to the window.

+

We tell FLTK that we will not add any more widgets to window.