mirror of
https://github.com/zxing/zxing.git
synced 2025-03-05 20:48:51 -08:00
c++ changes for r2519
git-svn-id: https://zxing.googlecode.com/svn/trunk@2612 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
parent
0ccb52ab37
commit
a27d470ede
|
@ -55,11 +55,10 @@ void GenericMultipleBarcodeReader::doDecodeMultiple(Ref<BinaryBitmap> image,
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (alreadyFound) {
|
if (!alreadyFound) {
|
||||||
return;
|
results.push_back(translateResultPoints(result, xOffset, yOffset));
|
||||||
}
|
}
|
||||||
|
|
||||||
results.push_back(translateResultPoints(result, xOffset, yOffset));
|
|
||||||
ArrayRef< Ref<ResultPoint> > resultPoints = result->getResultPoints();
|
ArrayRef< Ref<ResultPoint> > resultPoints = result->getResultPoints();
|
||||||
if (resultPoints->empty()) {
|
if (resultPoints->empty()) {
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in a new issue