From ff3fd7b0330cb76772066ce7162320f4dc1a5c28 Mon Sep 17 00:00:00 2001 From: Topi Reinio Date: Mon, 30 Mar 2020 15:01:44 +0200 Subject: Remove deprecated QTextStream operators from examples MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Use '\n' instead. Task-number: QTBUG-82532 Change-Id: I97aec4076bd46f23644099158f346a6ca32a4a0e Reviewed-by: Topi Reiniƶ --- examples/serialport/cenumerator/main.cpp | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) (limited to 'examples/serialport/cenumerator') diff --git a/examples/serialport/cenumerator/main.cpp b/examples/serialport/cenumerator/main.cpp index 902a7935..344551e0 100644 --- a/examples/serialport/cenumerator/main.cpp +++ b/examples/serialport/cenumerator/main.cpp @@ -58,7 +58,7 @@ int main(int argc, char *argv[]) QTextStream out(stdout); const auto serialPortInfos = QSerialPortInfo::availablePorts(); - out << "Total number of ports available: " << serialPortInfos.count() << endl; + out << "Total number of ports available: " << serialPortInfos.count() << "\n"; const QString blankString = "N/A"; QString description; @@ -69,18 +69,17 @@ int main(int argc, char *argv[]) description = serialPortInfo.description(); manufacturer = serialPortInfo.manufacturer(); serialNumber = serialPortInfo.serialNumber(); - out << endl - << "Port: " << serialPortInfo.portName() << endl - << "Location: " << serialPortInfo.systemLocation() << endl - << "Description: " << (!description.isEmpty() ? description : blankString) << endl - << "Manufacturer: " << (!manufacturer.isEmpty() ? manufacturer : blankString) << endl - << "Serial number: " << (!serialNumber.isEmpty() ? serialNumber : blankString) << endl - << "Vendor Identifier: " << (serialPortInfo.hasVendorIdentifier() + out << "\nPort: " << serialPortInfo.portName() + << "\nLocation: " << serialPortInfo.systemLocation() + << "\nDescription: " << (!description.isEmpty() ? description : blankString) + << "\nManufacturer: " << (!manufacturer.isEmpty() ? manufacturer : blankString) + << "\nSerial number: " << (!serialNumber.isEmpty() ? serialNumber : blankString) + << "\nVendor Identifier: " << (serialPortInfo.hasVendorIdentifier() ? QByteArray::number(serialPortInfo.vendorIdentifier(), 16) - : blankString) << endl - << "Product Identifier: " << (serialPortInfo.hasProductIdentifier() + : blankString) + << "\nProduct Identifier: " << (serialPortInfo.hasProductIdentifier() ? QByteArray::number(serialPortInfo.productIdentifier(), 16) - : blankString) << endl; + : blankString) << "\n"; } return 0; -- cgit v1.2.3