diff options
| author | Albrecht Schlosser <albrechts.fltk@online.de> | 2014-10-30 12:35:36 +0000 |
|---|---|---|
| committer | Albrecht Schlosser <albrechts.fltk@online.de> | 2014-10-30 12:35:36 +0000 |
| commit | 325fec1f45358e02b62a361886da25a3df98bf78 (patch) | |
| tree | 1a9eeb48561b91a31e28ba3d94fa869d4bbb53ef | |
| parent | c3c56594790c60a0571128b1d333efb68c9ad3ef (diff) | |
Update copyright and CHANGES.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10416 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
| -rw-r--r-- | CHANGES | 2 | ||||
| -rw-r--r-- | src/Fl_Text_Display.cxx | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -72,7 +72,6 @@ CHANGES IN FLTK 1.3.3 RELEASED: Oct XX 2014 issue more warnings, and fixed some 32-/64-bit compilation issues. - Add method Fl_Window::clear_modal_states() to make it possible to remove the modal or non-modal state from a window (STR #3123). - - New portable sleep methods Fl::sleep(), Fl::msleep(), Fl::usleep(). Bug fixes @@ -94,6 +93,7 @@ CHANGES IN FLTK 1.3.3 RELEASED: Oct XX 2014 Enter key now selects the file again. - Fixed a bug in Fl_Native_File_Chooser (Windows) for some file name input filters (STR #3101). + - Fixed out-of-bounds memory access in Fl_Text_Display (STR #2730). 1.3.3 ABI FEATURES diff --git a/src/Fl_Text_Display.cxx b/src/Fl_Text_Display.cxx index e9f0367bc..613481da0 100644 --- a/src/Fl_Text_Display.cxx +++ b/src/Fl_Text_Display.cxx @@ -1,12 +1,12 @@ // // "$Id$" // -// Copyright 2001-2010 by Bill Spitzak and others. +// Copyright 2001-2014 by Bill Spitzak and others. // Original code Copyright Mark Edel. Permission to distribute under // the LGPL for the FLTK library granted by Mark Edel. // // This library is free software. Distribution and use rights are outlined in -// the file "COPYING" which should have been included with this file. If this +// the file "COPYING" which should have been included with this file. If this // file is missing or damaged, see the license at: // // http://www.fltk.org/COPYING.php |
