From b2e9308751ec0bc90dfbae69bc7309df62672e9f Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Fri, 9 Aug 2002 22:57:00 +0000 Subject: 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 --- fluid/file.cxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'fluid/file.cxx') 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 $". // -- cgit v1.2.3