Merge from default branch

This commit is contained in:
ffsup2
2010-09-24 22:49:15 +02:00
parent 18d6799cbe
commit dc2350cee8
145 changed files with 23287 additions and 17316 deletions

View File

@@ -1,7 +1,7 @@
#include <labimage.h>
namespace rtengine {
LabImage::LabImage (int w, int h) : W(w), H(h), fromImage(false) {
LabImage::LabImage (int w, int h) : fromImage(false), W(w), H(h) {
L = new unsigned short*[H];
for (int i=0; i<H; i++)