COVESA/dlt-viewer

Filter RegEx Replace in Export DLT and DLT Decoded does not work

Closed this issue · 0 comments

The Filter RegEx Replace feature currently only works for CSV and ASCII Export.
The feature should also work for DLT and DLT Decoded Export.
Because of another issue this feature must be currently disable, as it was already implemented.

    // apply Regex if needed
    if(exportFormat == QDltExporter::FormatDlt || exportFormat == QDltExporter::FormatDltDecoded)
    {
        //FIXME: The following does not work for non verbose messages, must be fixed to enable RegEx for DLT Export again
        //msg.setNumberOfArguments(msg.sizeArguments());
        //if(from) from->applyRegExStringMsg(msg);
        //msg.getMsg(buf,true);
    }