diff options
author | Lorn Potter <lorn.potter@nokia.com> | 2010-07-30 11:19:08 +1000 |
---|---|---|
committer | Lorn Potter <lorn.potter@nokia.com> | 2010-07-30 11:19:08 +1000 |
commit | 166b2bf0089b085bf225ffdfb4d2456ee2888ade (patch) | |
tree | f9cc26c5a1714e2d33a005db00484eb5c3b59310 /src/plugins | |
parent | 96dc38a1a971b2bb9d62d440943a3d0b2e44fb0c (diff) | |
download | qt4-tools-166b2bf0089b085bf225ffdfb4d2456ee2888ade.tar.gz |
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 6078db92e1..ddad7d4b34 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"; |