"export" doesn't work on tables
Framework for numerical computations, data analysis and visualisation
Brought to you by:
numere
The export command doesn't work on tables. Instead it opens the table for viewing it in the table viewer.
Analysis:
The issue is a missing check for the save flag. Instead of
if (_option.getUseExternalViewer())
NumeReKernel::showTable(sOut, nCol, nLine, sCache);
It should be
if (_option.getUseExternalViewer() && !bSave)
NumeReKernel::showTable(sOut, nCol, nLine, sCache);
Implementation:
The fix was implemented as proposed by the analysis. Implementation tests were passed successfully.
Documentation:
Not needed - Bug fix.
Tests:
The fix was added to the automatic tests. No deviations detected. Bug fix implemented successfully.
Anonymous
Diff:
Diff:
Diff:
Diff: