summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorLaszlo Papp <lpapp@kde.org>2013-03-11 13:17:31 +0000
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-03-11 15:00:26 +0100
commit70abe8fe1f16b0299626562991478c815bb935b6 (patch)
treee78845f0103e80df8c2ccbdc47d0147c4e95f437 /examples
parent152b9d4203aa2c87c3bf01d63379a9eb7713ec07 (diff)
downloadqtserialport-70abe8fe1f16b0299626562991478c815bb935b6.tar.gz
Fix a typo for the output of the cenumerator example
Change-Id: Id0d2b28158e34aa6ea1c5d16cd41e3f2c6cd48b4 Reviewed-by: Jake Petroules <jake.petroules@petroules.com> Reviewed-by: Denis Shienkov <denis.shienkov@gmail.com>
Diffstat (limited to 'examples')
-rw-r--r--examples/cenumerator/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/cenumerator/main.cpp b/examples/cenumerator/main.cpp
index f203496..11af618 100644
--- a/examples/cenumerator/main.cpp
+++ b/examples/cenumerator/main.cpp
@@ -59,8 +59,8 @@ int main(int argc, char *argv[])
<< QObject::tr("Location: ") << serialPortInfo.systemLocation() << endl
<< QObject::tr("Description: ") << serialPortInfo.description() << endl
<< QObject::tr("Manufacturer: ") << serialPortInfo.manufacturer() << endl
- << QObject::tr("Vendor Idenifier: ") << serialPortInfo.vendorIdentifier() << endl
- << QObject::tr("Product Idenifier: ") << serialPortInfo.productIdentifier() << endl
+ << QObject::tr("Vendor Identifier: ") << serialPortInfo.vendorIdentifier() << endl
+ << QObject::tr("Product Identifier: ") << serialPortInfo.productIdentifier() << endl
<< QObject::tr("Busy: ") << (serialPortInfo.isBusy() ? QObject::tr("Yes") : QObject::tr("No")) << endl;
}