Kaydet (Commit) 0545c1ad authored tarafından Mike Kaganski's avatar Mike Kaganski

Properly skip ignored value

Change-Id: I1ac75cde58a52f87ef6825baa2e689dbc449c8f0
Reviewed-on: https://gerrit.libreoffice.org/46547Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarMike Kaganski <mike.kaganski@collabora.com>
üst 02108182
......@@ -2097,7 +2097,7 @@ namespace cairocanvas
*pOut++ = vcl::unotools::toDoubleColor(*pIn++);
*pOut++ = vcl::unotools::toDoubleColor(*pIn++);
*pOut++ = vcl::unotools::toDoubleColor(*pIn++);
*pOut++ = 1.0; // the value does not matter
*pOut++ = 1.0; pIn++; // the value does not matter
}
return aRes;
}
......
......@@ -678,7 +678,7 @@ namespace canvas
*pOut++ = vcl::unotools::toDoubleColor(*pIn++);
*pOut++ = vcl::unotools::toDoubleColor(*pIn++);
*pOut++ = vcl::unotools::toDoubleColor(*pIn++);
*pOut++ = 1.0;
*pOut++ = 1.0; pIn++;
}
return aRes;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment