From ac61d93e5c006f3a4da6a38c96842c2584d7b092 Mon Sep 17 00:00:00 2001 From: Ian Bush <ian.bush@tessella.com> Date: Fri, 14 Nov 2014 13:47:36 +0000 Subject: [PATCH] Refs #6428 Replaced hardcoded string with appropriate variable. --- Code/Mantid/Framework/MDEvents/src/BoxControllerNeXusIO.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Code/Mantid/Framework/MDEvents/src/BoxControllerNeXusIO.cpp b/Code/Mantid/Framework/MDEvents/src/BoxControllerNeXusIO.cpp index b7a0f0d6f5d..49d76247cdb 100644 --- a/Code/Mantid/Framework/MDEvents/src/BoxControllerNeXusIO.cpp +++ b/Code/Mantid/Framework/MDEvents/src/BoxControllerNeXusIO.cpp @@ -469,7 +469,7 @@ void BoxControllerNeXusIO::loadBlock(std::vector<double> & Block, const uint64_t std::vector<int64_t> free_dims(2,2); free_dims[0] = int64_t(freeSpaceBlocks.size()/2); - m_File->writeUpdatedData("free_space_blocks", freeSpaceBlocks, free_dims); + m_File->writeUpdatedData(g_DBDataName, freeSpaceBlocks, free_dims); } } -- GitLab