}
@Override
public String toString(){
SingleReference formulaCellRef = (SingleReference)getGui().getController().getRefToken(m_xCell).Data;
String itemValue = getGui().createStringWithSpace( getGui().getController().getCellName( m_xCell ).replace("$", ""), 24 );
itemValue += getErrorMessage(); // get errorXXX original message, it independent even if the formula had been corrected
if( m_ErrorType == 0 ) {
itemValue += " - " + getGui().getDialogPropertyValue("Strings", "Strings.correctedLabel.Label");
} else {
if( m_ErrorType != 3 ){
String sCells = "";
String currCellName = "";
if( m_lNotValidPrecCells != null ) {
for (XCell currXCell : m_lNotValidPrecCells){
SingleReference currCellRef = (SingleReference)getGui().getController().getRefToken(currXCell).Data;
currCellName = (currCellRef.Sheet == formulaCellRef.Sheet) ? "" : getGui().getController().getSheetNameByIndex(currCellRef.Sheet) + ".";
currCellName += getGui().getController().getCellName(currXCell).replace("$", "");
sCells += " " + currCellName;
}
}