Browse Source

Remove compilation warning with gcc-6.3 and -Wreorder

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.4@12777 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
pull/1/head
Manolo Gouy 7 years ago
parent
commit
3b4c3e3295
  1. 3
      src/Fl_Image.cxx

3
src/Fl_Image.cxx

@ -42,8 +42,7 @@ Fl_RGB_Scaling Fl_Image::scaling_algorithm_ = FL_RGB_SCALING_BILINEAR;
1 to 4 for color images. 1 to 4 for color images.
*/ */
Fl_Image::Fl_Image(int W, int H, int D) : Fl_Image::Fl_Image(int W, int H, int D) :
w_(W), h_(H), d_(D), ld_(0), count_(0), data_(0L) w_(W), h_(H), d_(D), ld_(0), count_(0), pixel_w_(W), pixel_h_(H), data_(0L)
, pixel_w_(W), pixel_h_(H)
{} {}
/** /**

Loading…
Cancel
Save