diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2001-11-17 15:59:53 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2001-11-17 15:59:53 +0000 |
| commit | efbe74758f28328ed734735cf0d5a631e7e28193 (patch) | |
| tree | 4e14e07a95669f4352c402f3899e97112fa85747 /src/Fl_Help_View.cxx | |
| parent | 406404de72bafd6b1fea38a1da16c12e67d36403 (diff) | |
Pass pointers to pp and info when calling the new
png_destroy_read_struct() function.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1689 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl_Help_View.cxx')
| -rw-r--r-- | src/Fl_Help_View.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Fl_Help_View.cxx b/src/Fl_Help_View.cxx index 44dcc5cdc..9e6ba5567 100644 --- a/src/Fl_Help_View.cxx +++ b/src/Fl_Help_View.cxx @@ -1,5 +1,5 @@ // -// "$Id: Fl_Help_View.cxx,v 1.1.2.10 2001/11/17 15:27:15 easysw Exp $" +// "$Id: Fl_Help_View.cxx,v 1.1.2.11 2001/11/17 15:59:53 easysw Exp $" // // Fl_Help_View widget routines. // @@ -3114,7 +3114,7 @@ Fl_Help_View::load_png(Fl_Help_Image *img,// I - Image pointer # ifdef HAVE_PNG_READ_DESTROY png_read_destroy(pp, info, NULL); # else - png_destroy_read_struct(pp, info, NULL); + png_destroy_read_struct(&pp, &info, NULL); # endif // HAVE_PNG_READ_DESTROY return (1); @@ -3581,5 +3581,5 @@ scrollbar_callback(Fl_Widget *s, void *) // -// End of "$Id: Fl_Help_View.cxx,v 1.1.2.10 2001/11/17 15:27:15 easysw Exp $". +// End of "$Id: Fl_Help_View.cxx,v 1.1.2.11 2001/11/17 15:59:53 easysw Exp $". // |
