Author: matt
Date: 2011-09-17 13:42:30 -0700 (Sat, 17 Sep 2011)
New Revision: 9045
Log:
FLTK3: documentation fix. Wrong ctor created by dumb search'n'replace 2

Modified:
   branches/branch-3.0/include/fltk3/Box.h
   branches/branch-3.0/include/fltk3/SysMenuBar.h
   branches/branch-3.0/src/fltk3/FileBrowser.cxx
   branches/branch-3.0/src/fltk3/FileChooser2.cxx
   branches/branch-3.0/src/fltk3/FileIcon.cxx
   branches/branch-3.0/src/fltk3/HelpView.cxx
   branches/branch-3.0/src/fltk3/Pixmap.cxx
   branches/branch-3.0/src/fltk3/Progress.cxx
   branches/branch-3.0/src/fltk3/SharedImage.cxx
   branches/branch-3.0/src/fltk3/Wizard.cxx
   branches/branch-3.0/src/fltk3/XBMImage.cxx
   branches/branch-3.0/src/fltk3/run.cxx
   branches/branch-3.0/src/fltk3images/JPEGImage.cxx
   branches/branch-3.0/src/fltk3images/PNGImage.cxx
   branches/branch-3.0/src/fltk3images/PNMImage.cxx

Modified: branches/branch-3.0/include/fltk3/Box.h
===================================================================
--- branches/branch-3.0/include/fltk3/Box.h     2011-09-17 20:41:10 UTC (rev 
9044)
+++ branches/branch-3.0/include/fltk3/Box.h     2011-09-17 20:42:30 UTC (rev 
9045)
@@ -60,6 +60,7 @@
      */
     Box(int X, int Y, int W, int H, const char *l=0)
     : fltk3::Widget(X,Y,W,H,l) {}
+    
     /**    See fltk3::Box::Box(int x, int y, int w, int h, const char * = 0)   
*/
     Box(fltk3::Boxtype b, int X, int Y, int W, int H, const char *l)
     : fltk3::Widget(X,Y,W,H,l) {box(b);}

Modified: branches/branch-3.0/include/fltk3/SysMenuBar.h
===================================================================
--- branches/branch-3.0/include/fltk3/SysMenuBar.h      2011-09-17 20:41:10 UTC 
(rev 9044)
+++ branches/branch-3.0/include/fltk3/SysMenuBar.h      2011-09-17 20:42:30 UTC 
(rev 9045)
@@ -52,7 +52,7 @@
     /**
      @brief The constructor.
      *
-     * On Mac OS X, all arguments are unused. On other platforms they are used 
as by fltk3::MenuBar::fltk3::MenuBar().
+     * On Mac OS X, all arguments are unused. On other platforms they are used 
as by fltk3::MenuBar::MenuBar().
      */
     SysMenuBar(int x,int y,int w,int h,const char *l=0)
     : fltk3::MenuBar(x,y,w,h,l) {

Modified: branches/branch-3.0/src/fltk3/FileBrowser.cxx
===================================================================
--- branches/branch-3.0/src/fltk3/FileBrowser.cxx       2011-09-17 20:41:10 UTC 
(rev 9044)
+++ branches/branch-3.0/src/fltk3/FileBrowser.cxx       2011-09-17 20:42:30 UTC 
(rev 9045)
@@ -30,7 +30,7 @@
 //   fltk3::FileBrowser::item_height()     - Return the height of a list item.
 //   fltk3::FileBrowser::item_width()      - Return the width of a list item.
 //   fltk3::FileBrowser::item_draw()       - Draw a list item.
-//   fltk3::FileBrowser::fltk3::FileBrowser() - Create a fltk3::FileBrowser 
widget.
+//   fltk3::FileBrowser::FileBrowser() - Create a fltk3::FileBrowser widget.
 //   fltk3::FileBrowser::load()            - Load a directory into the browser.
 //   fltk3::FileBrowser::filter()          - Set the filename filter.
 //
@@ -394,7 +394,7 @@
 
 
 //
-// 'fltk3::FileBrowser::fltk3::FileBrowser()' - Create a fltk3::FileBrowser 
widget.
+// 'fltk3::FileBrowser::FileBrowser()' - Create a fltk3::FileBrowser widget.
 //
 
 fltk3::FileBrowser::FileBrowser(int        X,  // I - Upper-lefthand X 
coordinate

Modified: branches/branch-3.0/src/fltk3/FileChooser2.cxx
===================================================================
--- branches/branch-3.0/src/fltk3/FileChooser2.cxx      2011-09-17 20:41:10 UTC 
(rev 9044)
+++ branches/branch-3.0/src/fltk3/FileChooser2.cxx      2011-09-17 20:42:30 UTC 
(rev 9045)
@@ -119,7 +119,7 @@
 */
 /** @} */
 
-/** \fn fltk3::FileChooser::fltk3::FileChooser(const char *pathname, const 
char *pattern, int type, const char *title)
+/** \fn fltk3::FileChooser::FileChooser(const char *pathname, const char 
*pattern, int type, const char *title)
   The constructor creates the fltk3::FileChooser dialog shown.
   The pathname argument can be a directory name or a
   complete file name (in which case the corresponding file is highlighted

Modified: branches/branch-3.0/src/fltk3/FileIcon.cxx
===================================================================
--- branches/branch-3.0/src/fltk3/FileIcon.cxx  2011-09-17 20:41:10 UTC (rev 
9044)
+++ branches/branch-3.0/src/fltk3/FileIcon.cxx  2011-09-17 20:42:30 UTC (rev 
9045)
@@ -28,7 +28,7 @@
 //
 // Contents:
 //
-//   fltk3::FileIcon::fltk3::FileIcon()       - Create a new file icon.
+//   fltk3::FileIcon::FileIcon()       - Create a new file icon.
 //   fltk3::FileIcon::~Fl_File_Icon()      - Remove a file icon.
 //   fltk3::FileIcon::add()               - Add data to an icon.
 //   fltk3::FileIcon::find()              - Find an icon based upon a given 
file.

Modified: branches/branch-3.0/src/fltk3/HelpView.cxx
===================================================================
--- branches/branch-3.0/src/fltk3/HelpView.cxx  2011-09-17 20:41:10 UTC (rev 
9044)
+++ branches/branch-3.0/src/fltk3/HelpView.cxx  2011-09-17 20:42:30 UTC (rev 
9045)
@@ -41,7 +41,7 @@
 //   fltk3::HelpView::get_attr()        - Get an attribute value from the 
string.
 //   fltk3::HelpView::get_color()       - Get an alignment attribute.
 //   fltk3::HelpView::handle()          - Handle events in the widget.
-//   fltk3::HelpView::fltk3::HelpView()    - Build a fltk3::HelpView widget.
+//   fltk3::HelpView::HelpView()    - Build a fltk3::HelpView widget.
 //   fltk3::HelpView::~Fl_Help_View()   - Destroy a fltk3::HelpView widget.
 //   fltk3::HelpView::load()            - Load the specified file.
 //   fltk3::HelpView::resize()          - Resize the help widget.

Modified: branches/branch-3.0/src/fltk3/Pixmap.cxx
===================================================================
--- branches/branch-3.0/src/fltk3/Pixmap.cxx    2011-09-17 20:41:10 UTC (rev 
9044)
+++ branches/branch-3.0/src/fltk3/Pixmap.cxx    2011-09-17 20:42:30 UTC (rev 
9045)
@@ -25,13 +25,13 @@
 //     http://www.fltk.org/str.php
 //
 
-/** \fn fltk3::Pixmap::fltk3::Pixmap(const char **data)
+/** \fn fltk3::Pixmap::Pixmap(const char **data)
   The constructors create a new pixmap from the specified XPM data.*/
 
-/** \fn fltk3::Pixmap::fltk3::Pixmap(const unsigned char * const *data)
+/** \fn fltk3::Pixmap::Pixmap(const unsigned char * const *data)
   The constructors create a new pixmap from the specified XPM data.*/
 
-/** \fn fltk3::Pixmap::fltk3::Pixmap(const unsigned char **data)
+/** \fn fltk3::Pixmap::Pixmap(const unsigned char **data)
   The constructors create a new pixmap from the specified XPM data.*/
 
 // Draws X pixmap data, keeping it stashed in a server pixmap so it

Modified: branches/branch-3.0/src/fltk3/Progress.cxx
===================================================================
--- branches/branch-3.0/src/fltk3/Progress.cxx  2011-09-17 20:41:10 UTC (rev 
9044)
+++ branches/branch-3.0/src/fltk3/Progress.cxx  2011-09-17 20:42:30 UTC (rev 
9045)
@@ -28,7 +28,7 @@
 
 //
 //   fltk3::Progress::draw()        - Draw the check button.
-//   fltk3::Progress::fltk3::Progress() - Construct a fltk3::Progress widget.
+//   fltk3::Progress::Progress() - Construct a fltk3::Progress widget.
 //
 
 //

Modified: branches/branch-3.0/src/fltk3/SharedImage.cxx
===================================================================
--- branches/branch-3.0/src/fltk3/SharedImage.cxx       2011-09-17 20:41:10 UTC 
(rev 9044)
+++ branches/branch-3.0/src/fltk3/SharedImage.cxx       2011-09-17 20:42:30 UTC 
(rev 9045)
@@ -391,7 +391,7 @@
  \see fltk3::SharedImage::find(const char *n, int W, int H)
  \see fltk3::SharedImage::release() 
  \see fltk3::JPEGImage::JPEGImage(const char *name, const unsigned char *data)
- \see fltk3::PNGImage::fltk3::PNGImage (const char *name_png, const unsigned 
char *buffer, int maxsize)
+ \see fltk3::PNGImage::PNGImage (const char *name_png, const unsigned char 
*buffer, int maxsize)
 */
 fltk3::SharedImage* fltk3::SharedImage::get(const char *n, int W, int H) {
   fltk3::SharedImage   *temp;          // Image

Modified: branches/branch-3.0/src/fltk3/Wizard.cxx
===================================================================
--- branches/branch-3.0/src/fltk3/Wizard.cxx    2011-09-17 20:41:10 UTC (rev 
9044)
+++ branches/branch-3.0/src/fltk3/Wizard.cxx    2011-09-17 20:42:30 UTC (rev 
9045)
@@ -27,7 +27,7 @@
 // Contents:
 
 //
-//   fltk3::WizardGroup::fltk3::WizardGroup() - Create an fltk3::WizardGroup 
widget.
+//   fltk3::WizardGroup::WizardGroup() - Create an fltk3::WizardGroup widget.
 //   fltk3::WizardGroup::draw()      - Draw the wizard border and visible 
child.
 //   fltk3::WizardGroup::next()      - Show the next child.
 //   fltk3::WizardGroup::prev()      - Show the previous child.
@@ -45,7 +45,7 @@
 
 
 //
-// 'fltk3::WizardGroup::fltk3::WizardGroup()' - Create an fltk3::WizardGroup 
widget.
+// 'fltk3::WizardGroup::WizardGroup()' - Create an fltk3::WizardGroup widget.
 //
 
 /**

Modified: branches/branch-3.0/src/fltk3/XBMImage.cxx
===================================================================
--- branches/branch-3.0/src/fltk3/XBMImage.cxx  2011-09-17 20:41:10 UTC (rev 
9044)
+++ branches/branch-3.0/src/fltk3/XBMImage.cxx  2011-09-17 20:42:30 UTC (rev 
9045)
@@ -26,7 +26,7 @@
 //
 // Contents:
 //
-//   fltk3::XBMImage::fltk3::XBMImage() - Load an XBM file.
+//   fltk3::XBMImage::XBMImage() - Load an XBM file.
 //
 
 //
@@ -41,7 +41,7 @@
 #include "flstring.h"
 
 //
-// 'fltk3::XBMImage::fltk3::XBMImage()' - Load an XBM file.
+// 'fltk3::XBMImage::XBMImage()' - Load an XBM file.
 //
 
 /**  

Modified: branches/branch-3.0/src/fltk3/run.cxx
===================================================================
--- branches/branch-3.0/src/fltk3/run.cxx       2011-09-17 20:41:10 UTC (rev 
9044)
+++ branches/branch-3.0/src/fltk3/run.cxx       2011-09-17 20:42:30 UTC (rev 
9045)
@@ -1929,7 +1929,7 @@
 
  \param opt which option
  \return true or false
- \see enum fltk3::fltk3::Option
+ \see enum fltk3::Option
  \see fltk3::option(fltk3::Option, bool)
 
  \since FLTK 1.3.0
@@ -1987,7 +1987,7 @@
  
  \param opt which option
  \param val set to true or false
- \see enum fltk3::fltk3::Option
+ \see enum fltk3::Option
  \see bool fltk3::option(fltk3::Option)
  */
 void fltk3::option(fltk3::Option opt, bool val)

Modified: branches/branch-3.0/src/fltk3images/JPEGImage.cxx
===================================================================
--- branches/branch-3.0/src/fltk3images/JPEGImage.cxx   2011-09-17 20:41:10 UTC 
(rev 9044)
+++ branches/branch-3.0/src/fltk3images/JPEGImage.cxx   2011-09-17 20:42:30 UTC 
(rev 9045)
@@ -27,7 +27,7 @@
 //
 // Contents:
 //
-//   fltk3::JPEGImage::fltk3::JPEGImage() - Load a JPEG image file.
+//   fltk3::JPEGImage::JPEGImage() - Load a JPEG image file.
 //
 
 //

Modified: branches/branch-3.0/src/fltk3images/PNGImage.cxx
===================================================================
--- branches/branch-3.0/src/fltk3images/PNGImage.cxx    2011-09-17 20:41:10 UTC 
(rev 9044)
+++ branches/branch-3.0/src/fltk3images/PNGImage.cxx    2011-09-17 20:42:30 UTC 
(rev 9045)
@@ -28,7 +28,7 @@
 // Contents:
 
 //
-//   fltk3::PNGImage::fltk3::PNGImage() - Load a PNG image file.
+//   fltk3::PNGImage::PNGImage() - Load a PNG image file.
 //
 
 //

Modified: branches/branch-3.0/src/fltk3images/PNMImage.cxx
===================================================================
--- branches/branch-3.0/src/fltk3images/PNMImage.cxx    2011-09-17 20:41:10 UTC 
(rev 9044)
+++ branches/branch-3.0/src/fltk3images/PNMImage.cxx    2011-09-17 20:42:30 UTC 
(rev 9045)
@@ -27,7 +27,7 @@
 // Contents:
 
 //
-//   fltk3::PNMImage::fltk3::PNMImage() - Load a PNM image...
+//   fltk3::PNMImage::PNMImage() - Load a PNM image...
 //
 
 //
@@ -43,7 +43,7 @@
 
 
 //
-// 'fltk3::PNMImage::fltk3::PNMImage()' - Load a PNM image...
+// 'fltk3::PNMImage::PNMImage()' - Load a PNM image...
 //
 
 /** 

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

Reply via email to