summaryrefslogtreecommitdiffstats
path: root/examples/serialport/cenumerator
diff options
context:
space:
mode:
authorSona Kurazyan <sona.kurazyan@qt.io>2019-08-05 13:43:48 +0200
committerSona Kurazyan <sona.kurazyan@qt.io>2019-08-05 14:40:35 +0200
commitb97dd9ea7a8e9aeeb63dcf173afa722f37d9a573 (patch)
tree19df2564b40940401bf13d42e8ceebf1f866ebdb /examples/serialport/cenumerator
parentad2628329e1685dbccd0ac3c5011336cd2c4f786 (diff)
Remove usages of deprecated APIs
- Fixed the build with disabled deprecated APIs. - Made the docs for deprecated APIs to compile conditionally, based on the deprecation version. Task-number: QTBUG-76491 Change-Id: I38fbd84254d3d35b2bc208994c9fd70142450ad8 Reviewed-by: Denis Shienkov <denis.shienkov@gmail.com>
Diffstat (limited to 'examples/serialport/cenumerator')
-rw-r--r--examples/serialport/cenumerator/main.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/serialport/cenumerator/main.cpp b/examples/serialport/cenumerator/main.cpp
index af6d7e41..902a7935 100644
--- a/examples/serialport/cenumerator/main.cpp
+++ b/examples/serialport/cenumerator/main.cpp
@@ -80,8 +80,7 @@ int main(int argc, char *argv[])
: blankString) << endl
<< "Product Identifier: " << (serialPortInfo.hasProductIdentifier()
? QByteArray::number(serialPortInfo.productIdentifier(), 16)
- : blankString) << endl
- << "Busy: " << (serialPortInfo.isBusy() ? "Yes" : "No") << endl;
+ : blankString) << endl;
}
return 0;