summaryrefslogtreecommitdiff
path: root/fluid/file.cxx
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2002-08-09 22:57:00 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2002-08-09 22:57:00 +0000
commitb2e9308751ec0bc90dfbae69bc7309df62672e9f (patch)
tree19a56f1e83990f98f36a9b970ecac46d22570bc0 /fluid/file.cxx
parent050919103f76dbe4aebaa8ac8a1e2633713ee571 (diff)
More shadowed variables in FLUID, plus use snprintf, strlcpy, and strlcat.
Don't use extra warning flags for normal compiles. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2568 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'fluid/file.cxx')
-rw-r--r--fluid/file.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/fluid/file.cxx b/fluid/file.cxx
index cd3610169..7cc2daac8 100644
--- a/fluid/file.cxx
+++ b/fluid/file.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: file.cxx,v 1.7.2.6.2.6 2002/05/16 12:47:43 easysw Exp $"
+// "$Id: file.cxx,v 1.7.2.6.2.7 2002/08/09 22:57:00 easysw Exp $"
//
// Fluid file routines for the Fast Light Tool Kit (FLTK).
//
@@ -465,9 +465,9 @@ static void read_children(Fl_Type *p, int paste) {
t->open_ = 0;
for (;;) {
- const char *c = read_word();
- if (!c || !strcmp(c,"}")) break;
- t->read_property(c);
+ const char *cc = read_word();
+ if (!cc || !strcmp(cc,"}")) break;
+ t->read_property(cc);
}
if (!t->is_parent()) continue;
@@ -631,5 +631,5 @@ void read_fdesign() {
}
//
-// End of "$Id: file.cxx,v 1.7.2.6.2.6 2002/05/16 12:47:43 easysw Exp $".
+// End of "$Id: file.cxx,v 1.7.2.6.2.7 2002/08/09 22:57:00 easysw Exp $".
//