diff options
| author | Matthias Melcher <fltk@matthiasm.com> | 2002-05-02 04:23:33 +0000 |
|---|---|---|
| committer | Matthias Melcher <fltk@matthiasm.com> | 2002-05-02 04:23:33 +0000 |
| commit | 508a9abbc8710c73318e953786bbf683b6598624 (patch) | |
| tree | 488ffe98cf652c20d28ba079830f9f9a64a41831 /fluid | |
| parent | 4b82930e04f9b59fd473a6f351300be0f20046f9 (diff) | |
Update some FLUID documentation, no snapshots though.
Tiny bug in fluid.cxx that would still show the wrong
message if it was unable to load a file from the history.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2172 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'fluid')
| -rw-r--r-- | fluid/fluid.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fluid/fluid.cxx b/fluid/fluid.cxx index b0ceedd34..23a85c972 100644 --- a/fluid/fluid.cxx +++ b/fluid/fluid.cxx @@ -1,5 +1,5 @@ // -// "$Id: fluid.cxx,v 1.15.2.13.2.23 2002/05/01 23:08:35 easysw Exp $" +// "$Id: fluid.cxx,v 1.15.2.13.2.24 2002/05/02 04:23:33 matthiaswm Exp $" // // FLUID main entry for the Fast Light Tool Kit (FLTK). // @@ -165,7 +165,7 @@ void open_history_cb(Fl_Widget *, void *v) { char *localcopy = strdup( (char*)v ); set_filename(localcopy); if (!read_file(localcopy, 0)) { - fl_message("Can't read %s: %s", v, strerror(errno)); + fl_message("Can't read %s: %s", localcopy, strerror(errno)); free(localcopy); return; } @@ -780,5 +780,5 @@ int main(int argc,char **argv) { } // -// End of "$Id: fluid.cxx,v 1.15.2.13.2.23 2002/05/01 23:08:35 easysw Exp $". +// End of "$Id: fluid.cxx,v 1.15.2.13.2.24 2002/05/02 04:23:33 matthiaswm Exp $". // |
