diff options
author | Lorn Potter <lorn.potter@nokia.com> | 2010-07-30 01:19:08 (GMT) |
---|---|---|
committer | Lorn Potter <lorn.potter@nokia.com> | 2010-07-30 01:19:08 (GMT) |
commit | 166b2bf0089b085bf225ffdfb4d2456ee2888ade (patch) | |
tree | f9cc26c5a1714e2d33a005db00484eb5c3b59310 /src/plugins | |
parent | 96dc38a1a971b2bb9d62d440943a3d0b2e44fb0c (diff) | |
download | Qt-166b2bf0089b085bf225ffdfb4d2456ee2888ade.zip Qt-166b2bf0089b085bf225ffdfb4d2456ee2888ade.tar.gz Qt-166b2bf0089b085bf225ffdfb4d2456ee2888ade.tar.bz2 |
fix crash
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/bearer/connman/qconnmanengine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/bearer/connman/qconnmanengine.cpp b/src/plugins/bearer/connman/qconnmanengine.cpp index 6078db9..ddad7d4 100644 --- a/src/plugins/bearer/connman/qconnmanengine.cpp +++ b/src/plugins/bearer/connman/qconnmanengine.cpp @@ -696,7 +696,7 @@ void QConnmanEngine::addNetworkConfiguration(const QString &networkPath) bearerName = typeToBearer(serv->getType()); } - if(bearerName == "Cellular") { + if(bearerName == "2G") { QString mode = serv->getMode(); if(mode == "gprs" || mode == "edge") { bearerName = "2G"; |