diff --git a/client/streamconfigdialog.cpp b/client/streamconfigdialog.cpp index 1dee6f9..46f0dae 100644 --- a/client/streamconfigdialog.cpp +++ b/client/streamconfigdialog.cpp @@ -1236,15 +1236,15 @@ void StreamConfigDialog::on_pbOk_clicked() if ((mPort.transmitMode() == OstProto::kInterleavedTransmit) && (mpStream->isFrameVariable())) { - log += "In 'Interleaved Streams' transmit mode, the count for " + log += "* In 'Interleaved Streams' transmit mode, the count for " "varying fields at transmit time may not be same as configured\n"; } if (!mPort.trackStreamStats() && mpStream->hasProtocol(OstProto::Protocol::kSignFieldNumber)) { - log += "Stream contains special signature, but per stream statistics " - "will not be available till it is enabled on the port.\n"; + log += "* Stream contains special signature, but per stream statistics " + "will not be available till it is enabled on the port\n"; } mpStream->preflightCheck(log); diff --git a/common/streambase.cpp b/common/streambase.cpp index 28a9442..86c5359 100644 --- a/common/streambase.cpp +++ b/common/streambase.cpp @@ -611,8 +611,8 @@ bool StreamBase::preflightCheck(QString &result) const if (chkTrunc && (pktLen < (frameProtocolLength(i) + kFcsSize))) { - result += QString("One or more frames may be truncated - " - "frame length should be at least %1.\n") + result += QString("* One or more frames may be truncated - " + "frame length should be at least %1\n") .arg(frameProtocolLength(i) + kFcsSize); chkTrunc = false; pass = false; @@ -620,8 +620,8 @@ bool StreamBase::preflightCheck(QString &result) const if (chkJumbo && (pktLen > 1522)) { - result += QString("Jumbo frames may be truncated or dropped " - "if not supported by the hardware.\n"); + result += QString("* Jumbo frames may be truncated or dropped " + "if not supported by the hardware\n"); chkJumbo = false; pass = false; }