diff options
author | Sergio Ahumada <sergio.ahumada@nokia.com> | 2012-02-08 21:07:58 (GMT) |
---|---|---|
committer | Qt by Nokia <qt-info@nokia.com> | 2012-02-09 07:54:42 (GMT) |
commit | 60666017530dc981b3908e3e572269cb5a3019ed (patch) | |
tree | 2c82884738c155c6a4103eb84e2871996894ff30 /src | |
parent | 95a857c2d3212c0a19aefd11ff960df56d413acc (diff) | |
download | Qt-60666017530dc981b3908e3e572269cb5a3019ed.zip Qt-60666017530dc981b3908e3e572269cb5a3019ed.tar.gz Qt-60666017530dc981b3908e3e572269cb5a3019ed.tar.bz2 |
Change bugreports.qt.nokia.com -> bugreports.qt-project.org
Change-Id: Ib13737eac7f7cee3ebca44aa712cb6b152672a81
Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
Reviewed-by: Jason McDonald <jason.mcdonald@nokia.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/corelib/global/qnamespace.qdoc | 2 | ||||
-rw-r--r-- | src/gui/egl/qegl_x11.cpp | 2 | ||||
-rw-r--r-- | src/network/access/qhttpnetworkconnectionchannel.cpp | 2 | ||||
-rw-r--r-- | src/network/access/qnetworkcookie.cpp | 2 | ||||
-rw-r--r-- | src/network/access/qnetworkcookiejar.cpp | 2 | ||||
-rw-r--r-- | src/plugins/platforms/eglconvenience/qxlibeglintegration.cpp | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/src/corelib/global/qnamespace.qdoc b/src/corelib/global/qnamespace.qdoc index ffa4d07..06c0fe2 100644 --- a/src/corelib/global/qnamespace.qdoc +++ b/src/corelib/global/qnamespace.qdoc @@ -2757,7 +2757,7 @@ \value ElideNone Ellipsis should NOT appear in the text. Qt::ElideMiddle is normally the most appropriate choice for URLs (e.g., - "\l{http://bugreports.qt.nokia.com/browse/QTWEBSITE-13}{http://bugreports.qt.../QTWEBSITE-13/}"), + "\l{http://bugreports.qt-project.org/browse/QTWEBSITE-13}{http://bugreports.qt.../QTWEBSITE-13/}"), whereas Qt::ElideRight is appropriate for other strings (e.g., "\l{http://qt.nokia.com/doc/qq/qq09-mac-deployment.html}{Deploying Applications on Ma...}"). diff --git a/src/gui/egl/qegl_x11.cpp b/src/gui/egl/qegl_x11.cpp index e8b5a68..d305de7 100644 --- a/src/gui/egl/qegl_x11.cpp +++ b/src/gui/egl/qegl_x11.cpp @@ -164,7 +164,7 @@ VisualID QEgl::getCompatibleVisualId(EGLConfig config) chosenVisualInfo = XGetVisualInfo(X11->display, VisualIDMask, &visualInfoTemplate, &matchingCount); if (chosenVisualInfo) { // Skip size checks if implementation supports non-matching visual - // and config (http://bugreports.qt.nokia.com/browse/QTBUG-9444). + // and config (http://bugreports.qt-project.org/browse/QTBUG-9444). if (QEgl::hasExtension("EGL_NV_post_convert_rounding")) { XFree(chosenVisualInfo); return visualId; diff --git a/src/network/access/qhttpnetworkconnectionchannel.cpp b/src/network/access/qhttpnetworkconnectionchannel.cpp index fbe9967..3411747 100644 --- a/src/network/access/qhttpnetworkconnectionchannel.cpp +++ b/src/network/access/qhttpnetworkconnectionchannel.cpp @@ -697,7 +697,7 @@ void QHttpNetworkConnectionChannel::allDone() #endif if (!reply) { - qWarning() << "QHttpNetworkConnectionChannel::allDone() called without reply. Please report at http://bugreports.qt.nokia.com/"; + qWarning() << "QHttpNetworkConnectionChannel::allDone() called without reply. Please report at http://bugreports.qt-project.org/"; return; } diff --git a/src/network/access/qnetworkcookie.cpp b/src/network/access/qnetworkcookie.cpp index 7c75af1..c33a86f 100644 --- a/src/network/access/qnetworkcookie.cpp +++ b/src/network/access/qnetworkcookie.cpp @@ -396,7 +396,7 @@ static QPair<QByteArray, QByteArray> nextField(const QByteArray &text, int &posi // quoted-pair = "\" CHAR // If it is NAME=VALUE, retain the value as is - // refer to http://bugreports.qt.nokia.com/browse/QTBUG-17746 + // refer to http://bugreports.qt-project.org/browse/QTBUG-17746 if (isNameValue) second += '"'; ++i; diff --git a/src/network/access/qnetworkcookiejar.cpp b/src/network/access/qnetworkcookiejar.cpp index 7fb9d39..028f41c 100644 --- a/src/network/access/qnetworkcookiejar.cpp +++ b/src/network/access/qnetworkcookiejar.cpp @@ -194,7 +194,7 @@ bool QNetworkCookieJar::setCookiesFromUrl(const QList<QNetworkCookie> &cookieLis // validate the cookie & set the defaults if unset if (cookie.path().isEmpty()) cookie.setPath(defaultPath); - // don't do path checking. See http://bugreports.qt.nokia.com/browse/QTBUG-5815 + // don't do path checking. See http://bugreports.qt-project.org/browse/QTBUG-5815 // else if (!isParentPath(pathAndFileName, cookie.path())) { // continue; // not accepted // } diff --git a/src/plugins/platforms/eglconvenience/qxlibeglintegration.cpp b/src/plugins/platforms/eglconvenience/qxlibeglintegration.cpp index 102e2a6..e17a42e 100644 --- a/src/plugins/platforms/eglconvenience/qxlibeglintegration.cpp +++ b/src/plugins/platforms/eglconvenience/qxlibeglintegration.cpp @@ -86,7 +86,7 @@ VisualID QXlibEglIntegration::getCompatibleVisualId(Display *display, EGLDisplay chosenVisualInfo = XGetVisualInfo(display, VisualIDMask, &visualInfoTemplate, &matchingCount); if (chosenVisualInfo) { // Skip size checks if implementation supports non-matching visual - // and config (http://bugreports.qt.nokia.com/browse/QTBUG-9444). + // and config (http://bugreports.qt-project.org/browse/QTBUG-9444). if (q_hasEglExtension(eglDisplay,"EGL_NV_post_convert_rounding")) { XFree(chosenVisualInfo); return visualId; |