diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-05-24 14:19:19 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-05-24 14:19:19 +0000 |
| commit | 3a117a899c6abb192f2498e88cc30997ad5763c2 (patch) | |
| tree | b86fdbec53783e7f239197935ab3b085f286128c /src/Fl_Image.cxx | |
| parent | 262321f5e61bb801b6e169e697d9a716cfb0c439 (diff) | |
Get rid of as many compiler warnings as possible.
Add missing offbits seek when reading BMP files.
Add -OPT:Olimit=4000 to SGI compiler options (for keyboard_ui)
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2253 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl_Image.cxx')
| -rw-r--r-- | src/Fl_Image.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Fl_Image.cxx b/src/Fl_Image.cxx index ae2c62f16..cb3478423 100644 --- a/src/Fl_Image.cxx +++ b/src/Fl_Image.cxx @@ -1,5 +1,5 @@ // -// "$Id: Fl_Image.cxx,v 1.5.2.3.2.20 2002/04/26 11:32:37 easysw Exp $" +// "$Id: Fl_Image.cxx,v 1.5.2.3.2.21 2002/05/24 14:19:19 easysw Exp $" // // Image drawing code for the Fast Light Tool Kit (FLTK). // @@ -41,7 +41,7 @@ void fl_restore_clip(); // from fl_rect.cxx Fl_Image::~Fl_Image() { } -void Fl_Image::draw(int XP, int YP, int WP, int HP, int cx, int cy) { +void Fl_Image::draw(int XP, int YP, int, int, int, int) { draw_empty(XP, YP); } @@ -58,7 +58,7 @@ Fl_Image *Fl_Image::copy(int W, int H) { return new Fl_Image(W, H, d()); } -void Fl_Image::color_average(Fl_Color c, float i) { +void Fl_Image::color_average(Fl_Color, float) { } void Fl_Image::desaturate() { @@ -393,5 +393,5 @@ void Fl_RGB_Image::label(Fl_Menu_Item* m) { // -// End of "$Id: Fl_Image.cxx,v 1.5.2.3.2.20 2002/04/26 11:32:37 easysw Exp $". +// End of "$Id: Fl_Image.cxx,v 1.5.2.3.2.21 2002/05/24 14:19:19 easysw Exp $". // |
