FLTK logo

[Library] r4780 - in branches/branch-1.1: . FL

FLTK matrix user chat room
(using Element browser app)   FLTK gitter user chat room   GitHub FLTK Project   FLTK News RSS Feed  
  FLTK Apps      FLTK Library      Forums      Links     Login 
 All Forums  |  Back to fltk.commit  ]
 
Previous Message ]Next Message ]

[Library] r4780 - in branches/branch-1.1: . FL fltk-dev Jan 31, 2006  
 
Author: mike
Date: 2006-01-31 11:06:45 -0500 (Tue, 31 Jan 2006)
New Revision: 4780

Modified:
   branches/branch-1.1/CHANGES
   branches/branch-1.1/FL/Fl_Spinner.H
Log:
Fl_Spinner's minimum() and maximum() "get" methods were
misspelled (STR #1146)



Modified: branches/branch-1.1/CHANGES
===================================================================
--- branches/branch-1.1/CHANGES	2006-01-31 15:50:06 UTC (rev 4779)
+++ branches/branch-1.1/CHANGES	2006-01-31 16:06:45 UTC (rev 4780)
@@ -1,5 +1,7 @@
 CHANGES IN FLTK 1.1.8
 
+	- Fl_Spinner's minimum() and maximum() "get" methods were
+	  misspelled (STR #1146)
 	- The largefile support changes in 1.1.7 broke binary
 	  compability for fl_filename_list(); you must now use
 	  "--enable-largefile" when configuring to get large file

Modified: branches/branch-1.1/FL/Fl_Spinner.H
===================================================================
--- branches/branch-1.1/FL/Fl_Spinner.H	2006-01-31 15:50:06 UTC (rev 4779)
+++ branches/branch-1.1/FL/Fl_Spinner.H	2006-01-31 16:06:45 UTC (rev 4780)
@@ -127,9 +127,12 @@
 
   const char	*format() { return (format_); }
   void		format(const char *f) { format_ = f; update(); }
+  // Speling mistaks retained for source compatibility...
   double	maxinum() const { return (maximum_); }
+  double	maximum() const { return (maximum_); }
   void		maximum(double m) { maximum_ = m; }
   double	mininum() const { return (minimum_); }
+  double	minimum() const { return (minimum_); }
   void		minimum(double m) { minimum_ = m; }
   void		range(double a, double b) { minimum_ = a; maximum_ = b; }
   void		resize(int X, int Y, int W, int H) {

Direct Link to Message ]
 
     
Previous Message ]Next Message ]
 
 

Comments are owned by the poster. All other content is copyright 1998-2024 by Bill Spitzak and others. This project is hosted by The FLTK Team. Please report site problems to 'erco@seriss.com'.