summaryrefslogtreecommitdiff
path: root/src/Fl_GIF_Image.cxx
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2001-12-21 20:45:43 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2001-12-21 20:45:43 +0000
commit1eb5acf22eeacb783b950655314e142b4b5a89a6 (patch)
tree187fa4228496aab392e00b1dc66ec4811867e625 /src/Fl_GIF_Image.cxx
parentb51af0f1bf311421d5d18815f8776b2e4ddc43c7 (diff)
Casts to make old IRIX 5.3 C++ compiler happy...
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1892 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl_GIF_Image.cxx')
-rw-r--r--src/Fl_GIF_Image.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Fl_GIF_Image.cxx b/src/Fl_GIF_Image.cxx
index b6260d111..83b27c322 100644
--- a/src/Fl_GIF_Image.cxx
+++ b/src/Fl_GIF_Image.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: Fl_GIF_Image.cxx,v 1.1.2.7 2001/12/19 18:15:33 easysw Exp $"
+// "$Id: Fl_GIF_Image.cxx,v 1.1.2.8 2001/12/21 20:45:43 easysw Exp $"
//
// Fl_GIF_Image routines.
//
@@ -363,7 +363,7 @@ Fl_GIF_Image::Fl_GIF_Image(const char *infname) : Fl_Pixmap((char *const*)0) {
new_data[i + 2][Width] = 0;
}
- data(new_data, Height + 2);
+ data((const char **)new_data, Height + 2);
alloc_data = 1;
delete[] Image;
@@ -373,5 +373,5 @@ Fl_GIF_Image::Fl_GIF_Image(const char *infname) : Fl_Pixmap((char *const*)0) {
//
-// End of "$Id: Fl_GIF_Image.cxx,v 1.1.2.7 2001/12/19 18:15:33 easysw Exp $".
+// End of "$Id: Fl_GIF_Image.cxx,v 1.1.2.8 2001/12/21 20:45:43 easysw Exp $".
//