FIXED broken run-list interface to msr2data in musredit/musrgui (MUSR-202)

This commit is contained in:
Bastian M. Wojek 2011-07-31 09:43:05 +00:00
parent 0e14ec3e42
commit c78c9cc3dd
3 changed files with 3 additions and 2 deletions

View File

@ -14,6 +14,7 @@ NEW the chi^2 calculation in single-histogram and asymmetry fits is parallelized
if musrfit is built using a compiler supporting OpenMP (e.g. GCC >= 4.2) if musrfit is built using a compiler supporting OpenMP (e.g. GCC >= 4.2)
Using --disable-omp this feature can be disabled on the configure level. Using --disable-omp this feature can be disabled on the configure level.
NEW any2many: force the user to define the exact NeXus ouput format (HDF4,HDF5,XML) NEW any2many: force the user to define the exact NeXus ouput format (HDF4,HDF5,XML)
FIXED broken run-list interface to msr2data in musredit/musrgui (MUSR-202)
FIXED some severe issues in the run-number-digit determination of msr2data introduced in late 2010 FIXED some severe issues in the run-number-digit determination of msr2data introduced in late 2010
FIXED a musrview exception error when starting with t0's very much off to the positive side in the msr-file (MUSR-199) FIXED a musrview exception error when starting with t0's very much off to the positive side in the msr-file (MUSR-199)
FIXED a linking problem when only shared libraries are built on Cygwin FIXED a linking problem when only shared libraries are built on Cygwin

View File

@ -1768,7 +1768,7 @@ void PTextEdit::musrMsr2Data()
break; break;
case 2: // run list file name case 2: // run list file name
runListFileName = fMsr2DataParam->runListFileName; runListFileName = fMsr2DataParam->runListFileName;
fi = runListFileName; fi.setFile(runListFileName);
if (!fi.exists()) { if (!fi.exists()) {
str = QString("Run List File '%1' doesn't exist.").arg(runListFileName); str = QString("Run List File '%1' doesn't exist.").arg(runListFileName);
QMessageBox::critical(this, "**ERROR**", QMessageBox::critical(this, "**ERROR**",

View File

@ -1495,7 +1495,7 @@ void PTextEdit::musrMsr2Data()
break; break;
case 2: // run list file name case 2: // run list file name
runListFileName = fMsr2DataParam->runListFileName; runListFileName = fMsr2DataParam->runListFileName;
fi = runListFileName; fi.setFile(runListFileName);
if (!fi.exists()) { if (!fi.exists()) {
str = QString("Run List File '%1' doesn't exist.").arg(runListFileName); str = QString("Run List File '%1' doesn't exist.").arg(runListFileName);
QMessageBox::critical(this, "**ERROR**", QMessageBox::critical(this, "**ERROR**",