summaryrefslogtreecommitdiffstats
path: root/src/network/bearer/qnetworkconfiguration.cpp
diff options
context:
space:
mode:
authorAaron McCarthy <aaron.mccarthy@nokia.com>2010-07-29 06:35:30 (GMT)
committerAaron McCarthy <aaron.mccarthy@nokia.com>2010-08-02 00:08:26 (GMT)
commit613bc8eb31d8a80b43aa045ab2040b7cb7e0eadf (patch)
tree78abfb5b571e6d1584f342a42806aad7c7b83d73 /src/network/bearer/qnetworkconfiguration.cpp
parente93d11c733bb44208089a7488c6e7a176468d407 (diff)
downloadQt-613bc8eb31d8a80b43aa045ab2040b7cb7e0eadf.zip
Qt-613bc8eb31d8a80b43aa045ab2040b7cb7e0eadf.tar.gz
Qt-613bc8eb31d8a80b43aa045ab2040b7cb7e0eadf.tar.bz2
Rename QNetworkConfiguration::bearerName() function.
bearerName() -> bearerTypeName(). bearerName() is deprecated and converted into an inline function which calls bearerTypeName(). This is required to keep existing code source compatible between Qt Mobility 1.0.x and Qt 4.7. Task-number: QTBUG-12378 Reviewed-by: Alex
Diffstat (limited to 'src/network/bearer/qnetworkconfiguration.cpp')
-rw-r--r--src/network/bearer/qnetworkconfiguration.cpp24
1 files changed, 16 insertions, 8 deletions
diff --git a/src/network/bearer/qnetworkconfiguration.cpp b/src/network/bearer/qnetworkconfiguration.cpp
index d7fceba..b939342 100644
--- a/src/network/bearer/qnetworkconfiguration.cpp
+++ b/src/network/bearer/qnetworkconfiguration.cpp
@@ -383,12 +383,20 @@ QList<QNetworkConfiguration> QNetworkConfiguration::children() const
}
/*!
- Returns the type of bearer. The string is not translated and
- therefore can not be shown to the user. The subsequent table presents the currently known
- bearer types:
+ \fn QString QNetworkConfiguration::bearerName() const
+ \deprecated
+
+ This function is deprecated. It is equivalent to calling bearerTypeName().
+*/
+
+/*!
+ Returns the type of bearer used by this network configuration as a string.
+
+ The string is not translated and therefore can not be shown to the user. The subsequent table
+ presents the currently known bearer types:
\table
- \header
+ \header
\o Value
\o Description
\row
@@ -403,7 +411,7 @@ QList<QNetworkConfiguration> QNetworkConfiguration::children() const
\row
\o 2G
\o The session uses CSD, GPRS, HSCSD, EDGE or cdmaOne.
- \row
+ \row
\o CDMA2000
\o The session uses CDMA.
\row
@@ -420,11 +428,11 @@ QList<QNetworkConfiguration> QNetworkConfiguration::children() const
\o The session uses WiMAX.
\endtable
- This function returns an empty string if this is an invalid configuration,
- a network configuration of type \l QNetworkConfiguration::ServiceNetwork or
+ This function returns an empty string if this is an invalid configuration, a network
+ configuration of type \l QNetworkConfiguration::ServiceNetwork or
\l QNetworkConfiguration::UserChoice.
*/
-QString QNetworkConfiguration::bearerName() const
+QString QNetworkConfiguration::bearerTypeName() const
{
if (!isValid())
return QString();