# HG changeset patch # User Benjamin Golinvaux # Date 1565965451 -7200 # Node ID 118fc5c85d0706b2c28d17d9213cf34f58c49a90 # Parent bf35bffd93daee0b360827005b55eac6334af881 Fixed call to renamed method SetSize --> SetSizeInVoxels diff -r bf35bffd93da -r 118fc5c85d07 UnitTestsSources/UnitTestsMain.cpp --- a/UnitTestsSources/UnitTestsMain.cpp Tue Aug 13 17:31:29 2019 +0200 +++ b/UnitTestsSources/UnitTestsMain.cpp Fri Aug 16 16:24:11 2019 +0200 @@ -642,7 +642,7 @@ TEST(VolumeImageGeometry, Basic) { OrthancStone::VolumeImageGeometry g; - g.SetSize(10, 20, 30); + g.SetSizeInVoxels(10, 20, 30); g.SetVoxelDimensions(1, 2, 3); OrthancStone::Vector p = g.GetCoordinates(0, 0, 0);