summaryrefslogtreecommitdiffstats
path: root/src/corelib/io/qurl.cpp
diff options
context:
space:
mode:
authorWarwick Allison <warwick.allison@nokia.com>2009-08-14 06:27:08 (GMT)
committerWarwick Allison <warwick.allison@nokia.com>2009-08-14 06:27:08 (GMT)
commitb98b7d305ffebb700e471bd64a7dee59d947e056 (patch)
treed9520eadd17944ae9ff5e44616a695b814b085e8 /src/corelib/io/qurl.cpp
parent6bb93ab2fd79ae0a04c826d9027503b644b6e374 (diff)
downloadQt-b98b7d305ffebb700e471bd64a7dee59d947e056.zip
Qt-b98b7d305ffebb700e471bd64a7dee59d947e056.tar.gz
Qt-b98b7d305ffebb700e471bd64a7dee59d947e056.tar.bz2
QT_NO_URL_CAST_FROM_STRING, like QT_NO_CAST_FROM_ASCII
Diffstat (limited to 'src/corelib/io/qurl.cpp')
-rw-r--r--src/corelib/io/qurl.cpp23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/corelib/io/qurl.cpp b/src/corelib/io/qurl.cpp
index 79cd2f0..2841bac 100644
--- a/src/corelib/io/qurl.cpp
+++ b/src/corelib/io/qurl.cpp
@@ -4024,6 +4024,29 @@ QString QUrlPrivate::createErrorString()
}
/*!
+ \macro QT_NO_URL_CAST_FROM_STRING
+ \relates QUrl
+
+ Disables automatic conversions from QString (or char *) to QUrl.
+
+ Compiling your code with this define is useful when you have a lot of
+ code that uses QString for file names and you wish to convert it to
+ use QUrl for network transparency. In any code that uses QUrl, it can
+ help avoid missing QUrl::resolved() calls, and other misuses of
+ QString to QUrl conversions.
+
+ \oldcode
+ url = filename; // probably not what you want
+ \newcode
+ url = QUrl::fromLocalFile(filename);
+ url = baseurl.resolved(QUrl(filename));
+ \endcode
+
+ \sa QT_NO_CAST_FROM_ASCII
+*/
+
+
+/*!
Constructs a URL by parsing \a url. \a url is assumed to be in human
readable representation, with no percent encoding. QUrl will automatically
percent encode all characters that are not allowed in a URL.