summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2002-04-12 20:16:07 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2002-04-12 20:16:07 +0000
commit9e2f36201612e978f2f518ed7220af42d06264cd (patch)
tree2b48c0e01c7212fdde803f6d9382ea0f32f55ec4 /CHANGES
parentaab290b5039910e59ce7aaf0196b4e03aa061600 (diff)
Move ENTER/LEAVE handling to Fl_Box so that the default event handler
in Fl_Widget doesn't interfere with existing widgets. Remove unnecessary strcasecmp defines. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2076 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES8
1 files changed, 8 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index dedd18d16..4efc1a522 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,13 @@
CHANGES IN FLTK 1.1.0
+ - Fl_Widget::handle() returned 1 for FL_ENTER and
+ FL_LEAVE events, which caused some compatibility
+ problems with 1.0 code.
+ - Fl_Box::handle() now returns 1 for FL_ENTER and
+ FL_LEAVE events so that tooltips will work with Fl_Box
+ widgets.
+ - Some source files still defined strcasecmp and
+ strncasecmp under WIN32.
- Some source files still used the "false" and "true"
C++ keywords, even though several of our "supported"
C++ compilers don't support them. Using 0 and 1 until