summaryrefslogtreecommitdiffstats
path: root/src/plugins
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@nokia.com>2010-02-27 13:54:17 (GMT)
committerThiago Macieira <thiago.macieira@nokia.com>2010-02-27 13:54:17 (GMT)
commit57ce77e953b618739f6f1aec67f8e0de97e05b08 (patch)
tree2ca3084ffd1414eb73f5d17f8f90b045e354241f /src/plugins
parent1873a4b70dbc8a867ccc5b3cc0a2d9d85b208591 (diff)
downloadQt-57ce77e953b618739f6f1aec67f8e0de97e05b08.zip
Qt-57ce77e953b618739f6f1aec67f8e0de97e05b08.tar.gz
Qt-57ce77e953b618739f6f1aec67f8e0de97e05b08.tar.bz2
Fix compilation with Sun CC: __FUNCTION__ is not valid
Use the alternative from qglobal.h, that exists for this reason. Reviewed-by: Trust Me
Diffstat (limited to 'src/plugins')
-rw-r--r--src/plugins/bearer/qnetworksession_impl.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/bearer/qnetworksession_impl.cpp b/src/plugins/bearer/qnetworksession_impl.cpp
index f41fdba..05ce62f 100644
--- a/src/plugins/bearer/qnetworksession_impl.cpp
+++ b/src/plugins/bearer/qnetworksession_impl.cpp
@@ -201,22 +201,22 @@ void QNetworkSessionPrivateImpl::stop()
void QNetworkSessionPrivateImpl::migrate()
{
- qWarning("This platform does not support roaming (%s).", __FUNCTION__);
+ qWarning("This platform does not support roaming (%s).", Q_FUNC_INFO);
}
void QNetworkSessionPrivateImpl::accept()
{
- qWarning("This platform does not support roaming (%s).", __FUNCTION__);
+ qWarning("This platform does not support roaming (%s).", Q_FUNC_INFO);
}
void QNetworkSessionPrivateImpl::ignore()
{
- qWarning("This platform does not support roaming (%s).", __FUNCTION__);
+ qWarning("This platform does not support roaming (%s).", Q_FUNC_INFO);
}
void QNetworkSessionPrivateImpl::reject()
{
- qWarning("This platform does not support roaming (%s).", __FUNCTION__);
+ qWarning("This platform does not support roaming (%s).", Q_FUNC_INFO);
}
QNetworkInterface QNetworkSessionPrivateImpl::currentInterface() const