summaryrefslogtreecommitdiff
path: root/src/plugins/qnx/blackberrydeviceinformation.cpp
diff options
context:
space:
mode:
authorRafael Roquetto <rafael.roquetto@kdab.com>2013-04-12 17:09:11 -0300
committerRafael Roquetto <rafael.roquetto@kdab.com>2013-05-13 15:11:10 +0200
commit8d25becfa9089addbaa7e039f30f261e72171331 (patch)
tree98c4b56dbeb754e5c2f6456497e14056eb49195d /src/plugins/qnx/blackberrydeviceinformation.cpp
parentc426b71334dd7e9f15bcfe8082cabc616d2f4b4a (diff)
downloadqt-creator-8d25becfa9089addbaa7e039f30f261e72171331.tar.gz
BlackBerry Development Environment Setup Wizard
This wizard tries to make the process of setting up a new development environment for BlackBerry devices easy. It does not implement anything that isn't already available through the BlackBerry category under the "options" menu, and also imposes some restrictions for the sake of simplicity. It will: * register CSJ keys * create developer certificate * create SSH keys to a default location * request a debug token * upload a debug token to the device Change-Id: I063ee107fb474135523cf685b7ac5d05096ef741 Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
Diffstat (limited to 'src/plugins/qnx/blackberrydeviceinformation.cpp')
-rw-r--r--src/plugins/qnx/blackberrydeviceinformation.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/qnx/blackberrydeviceinformation.cpp b/src/plugins/qnx/blackberrydeviceinformation.cpp
index f776823b15..7c466e2773 100644
--- a/src/plugins/qnx/blackberrydeviceinformation.cpp
+++ b/src/plugins/qnx/blackberrydeviceinformation.cpp
@@ -80,7 +80,7 @@ QString BlackBerryDeviceInformation::hardwareId() const
void BlackBerryDeviceInformation::processData(const QString &line)
{
if (line.startsWith(QLatin1String("devicepin::")))
- m_devicePin = line.split(QLatin1String("::")).at(1).trimmed();
+ m_devicePin = line.split(QLatin1String("::0x")).at(1).trimmed();
else if (line.startsWith(QLatin1String("device_os::")))
m_deviceOS = line.split(QLatin1String("::")).at(1).trimmed();
else if (line.startsWith(QLatin1String("hardwareid::")))