Author: AlbrechtS
Date: 2009-07-29 09:29:26 -0700 (Wed, 29 Jul 2009)
New Revision: 6837
Log:
Fixed a few typos.


Modified:
   branches/branch-1.3/documentation/src/osissues.dox
   branches/branch-1.3/documentation/src/subclassing.dox

Modified: branches/branch-1.3/documentation/src/osissues.dox
===================================================================
--- branches/branch-1.3/documentation/src/osissues.dox  2009-07-25 12:56:16 UTC 
(rev 6836)
+++ branches/branch-1.3/documentation/src/osissues.dox  2009-07-29 16:29:26 UTC 
(rev 6837)
@@ -274,7 +274,7 @@
 void MyWindow::show() {
   if (shown()) {Fl_Window::show(); return;}  // you must do this!
   fl_open_display();   // necessary if this is first window
-  // we only calcualte the necessary visual colormap once:
+  // we only calculate the necessary visual colormap once:
   static XVisualInfo *visual;
   static Colormap colormap;
   if (!visual) {

Modified: branches/branch-1.3/documentation/src/subclassing.dox
===================================================================
--- branches/branch-1.3/documentation/src/subclassing.dox       2009-07-25 
12:56:16 UTC (rev 6836)
+++ branches/branch-1.3/documentation/src/subclassing.dox       2009-07-29 
16:29:26 UTC (rev 6837)
@@ -14,11 +14,10 @@
 A control widget typically interacts with the user to receive and/or
 display a value of some sort. 
 
-A composite widget widget holds a list of child widgets and handles moving,
-sizing, showing, or hiding them as needed. Fl_Group is the
-main composite widget widget class in FLTK, and all of the other composite
-widgets (Fl_Pack, Fl_Scroll, Fl_Tabs,
-Fl_Tile, and Fl_Window) are subclasses of it. 
+A composite widget holds a list of child widgets and handles moving,
+sizing, showing, or hiding them as needed. Fl_Group is the main
+composite widget class in FLTK, and all of the other composite widgets
+(Fl_Pack, Fl_Scroll, Fl_Tabs, Fl_Tile, and Fl_Window) are subclasses of it. 
 
 You can also subclass other existing widgets to provide a different
 look or user-interface. For example, the button widgets are all
@@ -518,7 +517,6 @@
 -# Fl_Window is a subclass of Fl_Group so
    <I>make sure your constructor calls</I> \p end()
    unless you actually want children added to your window.
-
 -# When handling events and drawing, the upper-left corner is at
    0,0, not <tt>x(),y()</tt> as in other Fl_Widget's.
    For instance, to draw a box around the widget, call

_______________________________________________
fltk-commit mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk-commit

Reply via email to