summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAaron McCarthy <aaron.mccarthy@nokia.com>2010-01-11 02:09:34 (GMT)
committerAaron McCarthy <aaron.mccarthy@nokia.com>2010-01-11 02:09:34 (GMT)
commitaed972b88e96596114ef8a5a350063744220f8c4 (patch)
tree324238fe5c19708526718266a7877a824ee09f06 /src
parentb2477aec2adad08c4f44ffcdc2f9ad1c0ce4a56b (diff)
downloadQt-aed972b88e96596114ef8a5a350063744220f8c4.zip
Qt-aed972b88e96596114ef8a5a350063744220f8c4.tar.gz
Qt-aed972b88e96596114ef8a5a350063744220f8c4.tar.bz2
Return empty bearer name for invalid, ServiceNetwork and UserChoice.
Diffstat (limited to 'src')
-rw-r--r--src/network/bearer/qnetworkconfiguration_s60_p.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/network/bearer/qnetworkconfiguration_s60_p.cpp b/src/network/bearer/qnetworkconfiguration_s60_p.cpp
index 3064840..d01d4d9 100644
--- a/src/network/bearer/qnetworkconfiguration_s60_p.cpp
+++ b/src/network/bearer/qnetworkconfiguration_s60_p.cpp
@@ -68,7 +68,7 @@ QString QNetworkConfigurationPrivate::bearerName() const
case QNetworkConfigurationPrivate::BearerHSPA: return QLatin1String("HSPA");
case QNetworkConfigurationPrivate::BearerBluetooth: return QLatin1String("Bluetooth");
case QNetworkConfigurationPrivate::BearerWiMAX: return QLatin1String("WiMAX");
- default: return QLatin1String("Unknown");
+ default: return QString();
}
}