diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2001-12-21 20:45:43 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2001-12-21 20:45:43 +0000 |
| commit | 1eb5acf22eeacb783b950655314e142b4b5a89a6 (patch) | |
| tree | 187fa4228496aab392e00b1dc66ec4811867e625 /src/Fl_Pixmap.cxx | |
| parent | b51af0f1bf311421d5d18815f8776b2e4ddc43c7 (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_Pixmap.cxx')
| -rw-r--r-- | src/Fl_Pixmap.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Fl_Pixmap.cxx b/src/Fl_Pixmap.cxx index 83dc96593..e7fbd9b4f 100644 --- a/src/Fl_Pixmap.cxx +++ b/src/Fl_Pixmap.cxx @@ -1,5 +1,5 @@ // -// "$Id: Fl_Pixmap.cxx,v 1.9.2.4.2.11 2001/12/04 03:03:17 matthiaswm Exp $" +// "$Id: Fl_Pixmap.cxx,v 1.9.2.4.2.12 2001/12/21 20:45:43 easysw Exp $" // // Pixmap drawing code for the Fast Light Tool Kit (FLTK). // @@ -207,7 +207,7 @@ void Fl_Pixmap::copy_data() { } // Update pointers... - data(new_data, h() + ncolors + 1); + data((const char **)new_data, h() + ncolors + 1); alloc_data = 1; } @@ -485,5 +485,5 @@ void Fl_Pixmap::desaturate() { } // -// End of "$Id: Fl_Pixmap.cxx,v 1.9.2.4.2.11 2001/12/04 03:03:17 matthiaswm Exp $". +// End of "$Id: Fl_Pixmap.cxx,v 1.9.2.4.2.12 2001/12/21 20:45:43 easysw Exp $". // |
