summaryrefslogtreecommitdiff
path: root/fluid
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>1998-12-02 15:47:30 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>1998-12-02 15:47:30 +0000
commit92402e682a1dc89c8915f1a4f5698d1c3ab82eb8 (patch)
tree8c05965a36c0802d98572b4fa189bcc033e598e8 /fluid
parent849e11623e44a62599d62ba9425f7e96146f555d (diff)
Fix for numericsort(), and drawing of some box types.
git-svn-id: file:///fltk/svn/fltk/trunk@107 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'fluid')
-rw-r--r--fluid/Fl_Widget_Type.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/fluid/Fl_Widget_Type.cxx b/fluid/Fl_Widget_Type.cxx
index 969da22da..3f3aeac6b 100644
--- a/fluid/Fl_Widget_Type.cxx
+++ b/fluid/Fl_Widget_Type.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: Fl_Widget_Type.cxx,v 1.9 1998/11/25 16:59:05 mike Exp $"
+// "$Id: Fl_Widget_Type.cxx,v 1.10 1998/12/02 15:47:28 mike Exp $"
//
// Widget type code for the Fast Light Tool Kit (FLTK).
//
@@ -1151,7 +1151,7 @@ void selection_changed(Fl_Type *p) {
// test to see if user named a function, or typed in code:
int is_name(const char *c) {
- for (; *c; c++) if (ispunct(*c) && *c!='_') return 0;
+ for (; *c; c++) if (ispunct(*c) && *c!='_' && *c!=':') return 0;
return 1;
}
@@ -1701,5 +1701,5 @@ int Fl_Widget_Type::read_fdesign(const char* name, const char* value) {
}
//
-// End of "$Id: Fl_Widget_Type.cxx,v 1.9 1998/11/25 16:59:05 mike Exp $".
+// End of "$Id: Fl_Widget_Type.cxx,v 1.10 1998/12/02 15:47:28 mike Exp $".
//