diff --git a/README b/README index c703bbbb035..f101b1d9e4b 100644 --- a/README +++ b/README @@ -102,7 +102,7 @@ SDK (release builds of Qt using MinGW and Visual C++ 2008). When using Visual C++ 2010, you must apply a hotfix that is available from http://support.microsoft.com/kb/2280741 - (See https://bugreports.qt.nokia.com/browse/QTBUG-11445). + (See https://bugreports.qt-project.org/browse/QTBUG-11445). For the Visual C++ compilers, it is recommended to use the tool 'jom'. It is a replacement for nmake that utilizes all CPU cores and thus diff --git a/dist/known-issues b/dist/known-issues index c6234e5daf6..209f1625181 100644 --- a/dist/known-issues +++ b/dist/known-issues @@ -4,7 +4,7 @@ http://doc.qt.nokia.com/qtcreator-snapshot/creator-known-issues.html For a complete list of reported issues, see the Qt Bug Tracker: -https://bugreports.qt.nokia.com/ +https://bugreports.qt-project.org/ For a list of fixed issues and added features, see the changelog file in the qtcreator\dist folder or the Qt Bug Tracker. diff --git a/doc/qt.index b/doc/qt.index index 4fdcfcd3ddf..9f6ea0bef30 100644 --- a/doc/qt.index +++ b/doc/qt.index @@ -3516,9 +3516,9 @@ - - - + + + diff --git a/doc/src/debugger/creator-debugger.qdoc b/doc/src/debugger/creator-debugger.qdoc index e8c625bac62..26b5ca1946e 100644 --- a/doc/src/debugger/creator-debugger.qdoc +++ b/doc/src/debugger/creator-debugger.qdoc @@ -548,7 +548,7 @@ \note The Mac OS X Snow Leopard (10.6) has a bug that might cause the application to crash. For a workaround, see: - \l{https://bugreports.qt.nokia.com/browse/QTBUG-4962}{QTBUG-4962}. + \l{https://bugreports.qt-project.org/browse/QTBUG-4962}{QTBUG-4962}. \endtable diff --git a/doc/src/howto/qtcreator-faq.qdoc b/doc/src/howto/qtcreator-faq.qdoc index b3c28207539..de1a1342b63 100644 --- a/doc/src/howto/qtcreator-faq.qdoc +++ b/doc/src/howto/qtcreator-faq.qdoc @@ -101,7 +101,7 @@ \bold {Has a reported issue been addressed?} You can look up any issue in the - \l{https://bugreports.qt.nokia.com/}{Qt bug tracker}. + \l{https://bugreports.qt-project.org/}{Qt bug tracker}. \if defined(qcmanual) \input widgets/creator-faq-qtdesigner.qdocinc diff --git a/doc/src/overview/creator-issues.qdoc b/doc/src/overview/creator-issues.qdoc index 061b15de843..6f1b0b7375c 100644 --- a/doc/src/overview/creator-issues.qdoc +++ b/doc/src/overview/creator-issues.qdoc @@ -38,7 +38,7 @@ bugs. For a list of fixed issues and added features, see the changelog file in - the \c{qtcreator\dist} folder or the \l{https://bugreports.qt.nokia.com} + the \c{qtcreator\dist} folder or the \l{https://bugreports.qt-project.org} {Qt Bug Tracker}. \section1 General Issues @@ -59,7 +59,7 @@ \o Qt 4.7.4 is known to contain a bug exposed by g++ 4.6 which triggers a crash in \QC. For more information, see - \l{https://bugreports.qt.nokia.com/browse/QTBUG-21265}{QTBUG-21265} + \l{https://bugreports.qt-project.org/browse/QTBUG-21265}{QTBUG-21265} \o The Okteta KDE custom widget plugin might be installed as part of some Linux distributions. It can cause Qt Designer to crash. For @@ -70,7 +70,7 @@ \o \l{https://bugs.launchpad.net/ubuntu/+source/kdeutils/+bug/662005} {Ubuntu bug 662005} - \o \l{https://bugreports.qt.nokia.com/browse/QTBUG-12025} + \o \l{https://bugreports.qt-project.org/browse/QTBUG-12025} {QTBUG-12025} \endlist @@ -129,7 +129,7 @@ agent might not be able to access memory when the operating system starts paging. This causes breakpoint handling and symbol resolution to fail. For more information, see - \l{https://bugreports.qt.nokia.com/browse/QTCREATORBUG-2158} + \l{https://bugreports.qt-project.org/browse/QTCREATORBUG-2158} {QTCREATORBUG-2158}. As a workaround, add the following section to the application .pro diff --git a/share/qtcreator/patches/gdb-expand-line-sal-maybe.patch b/share/qtcreator/patches/gdb-expand-line-sal-maybe.patch index ffb75437b22..45aa6031d5a 100644 --- a/share/qtcreator/patches/gdb-expand-line-sal-maybe.patch +++ b/share/qtcreator/patches/gdb-expand-line-sal-maybe.patch @@ -1,5 +1,5 @@ -This is fixing https://bugreports.qt.nokia.com/browse/QTCREATORBUG-2004 +This is fixing https://bugreports.qt-project.org/browse/QTCREATORBUG-2004 ----------------------------------------------------------------------------- diff --git a/src/plugins/debugger/gdb/gdbengine.cpp b/src/plugins/debugger/gdb/gdbengine.cpp index 4e6b14b9222..b3500e3070f 100644 --- a/src/plugins/debugger/gdb/gdbengine.cpp +++ b/src/plugins/debugger/gdb/gdbengine.cpp @@ -4665,7 +4665,7 @@ bool GdbEngine::startGdb(const QStringList &args, const QString &settingsIdHint) postCommand("set non-stop on"); } - // Work around https://bugreports.qt.nokia.com/browse/QTCREATORBUG-2004 + // Work around https://bugreports.qt-project.org/browse/QTCREATORBUG-2004 postCommand("maintenance set internal-warning quit no", ConsoleCommand); postCommand("maintenance set internal-error quit no", ConsoleCommand); diff --git a/src/plugins/debugger/watchhandler.cpp b/src/plugins/debugger/watchhandler.cpp index 88933a02724..b925766366f 100644 --- a/src/plugins/debugger/watchhandler.cpp +++ b/src/plugins/debugger/watchhandler.cpp @@ -1084,7 +1084,7 @@ void WatchModel::insertData(const WatchData &data) QModelIndex idx = watchIndex(oldItem); emit dataChanged(idx, idx.sibling(idx.row(), 2)); - // This works around https://bugreports.qt.nokia.com/browse/QTBUG-7115 + // This works around https://bugreports.qt-project.org/browse/QTBUG-7115 // by creating and destroying a dummy child item. if (!hadChildren && oldItem->hasChildren) { WatchData dummy = data; diff --git a/src/plugins/help/helpplugin.cpp b/src/plugins/help/helpplugin.cpp index 3a84a81c7d1..0fcc83ff8b2 100644 --- a/src/plugins/help/helpplugin.cpp +++ b/src/plugins/help/helpplugin.cpp @@ -1218,7 +1218,7 @@ void HelpPlugin::slotOpenSupportPage() void HelpPlugin::slotReportBug() { - QDesktopServices::openUrl(QUrl("https://bugreports.qt.nokia.com")); + QDesktopServices::openUrl(QUrl("https://bugreports.qt-project.org")); } void HelpPlugin::openFindToolBar() diff --git a/src/plugins/valgrind/callgrind/callgrinddatamodel.cpp b/src/plugins/valgrind/callgrind/callgrinddatamodel.cpp index 0aca04dafe5..7578c391655 100644 --- a/src/plugins/valgrind/callgrind/callgrinddatamodel.cpp +++ b/src/plugins/valgrind/callgrind/callgrinddatamodel.cpp @@ -206,7 +206,7 @@ QModelIndex DataModel::indexForObject(const Function *function) const } /** - * Evil workaround for https://bugreports.qt.nokia.com/browse/QTBUG-1135 + * Evil workaround for https://bugreports.qt-project.org/browse/QTBUG-1135 * Just replace the bad hyphens by a 'NON-BREAKING HYPHEN' unicode char */ static QString noWrap(const QString &str) diff --git a/src/plugins/valgrind/callgrindtool.cpp b/src/plugins/valgrind/callgrindtool.cpp index cd5e44716a5..a13abc5dc65 100644 --- a/src/plugins/valgrind/callgrindtool.cpp +++ b/src/plugins/valgrind/callgrindtool.cpp @@ -823,7 +823,7 @@ QWidget *CallgrindToolPrivate::createWidgets() m_filterProjectCosts = action; // filter - ///FIXME: find workaround for https://bugreports.qt.nokia.com/browse/QTCREATORBUG-3247 + ///FIXME: find workaround for https://bugreports.qt-project.org/browse/QTCREATORBUG-3247 QLineEdit *filter = new QLineEdit; filter->setPlaceholderText(tr("Filter...")); connect(filter, SIGNAL(textChanged(QString)), m_updateTimer, SLOT(start())); diff --git a/src/plugins/valgrind/callgrindvisualisation.cpp b/src/plugins/valgrind/callgrindvisualisation.cpp index cde885bfa32..fa616f151c7 100644 --- a/src/plugins/valgrind/callgrindvisualisation.cpp +++ b/src/plugins/valgrind/callgrindvisualisation.cpp @@ -56,7 +56,7 @@ // Margin from hardcoded value in: // QGraphicsView::fitInView(const QRectF &rect, // Qt::AspectRatioMode aspectRatioMode) -// Bug report here: https://bugreports.qt.nokia.com/browse/QTBUG-11945 +// Bug report here: https://bugreports.qt-project.org/browse/QTBUG-11945 static const int FIT_IN_VIEW_MARGIN = 2; using namespace Valgrind::Callgrind; diff --git a/src/plugins/valgrind/workarounds.h b/src/plugins/valgrind/workarounds.h index 15ffd18c4e1..27c0996c194 100644 --- a/src/plugins/valgrind/workarounds.h +++ b/src/plugins/valgrind/workarounds.h @@ -39,7 +39,7 @@ QT_BEGIN_NAMESPACE class QPalette; QT_END_NAMESPACE -///FIXME: remove this once https://bugreports.qt.nokia.com/browse/QTCREATORBUG-3247 gets fixed +///FIXME: remove this once https://bugreports.qt-project.org/browse/QTCREATORBUG-3247 gets fixed QPalette panelPalette(const QPalette &oldPalette, bool lightColored = false); #endif // WORKAROUNDS_H diff --git a/tests/manual/debugger/simple/simple_test_app.cpp b/tests/manual/debugger/simple/simple_test_app.cpp index 2497be95356..0a535c04a04 100644 --- a/tests/manual/debugger/simple/simple_test_app.cpp +++ b/tests/manual/debugger/simple/simple_test_app.cpp @@ -4173,7 +4173,7 @@ namespace basic { dummyStatement(&foo); } - // http://bugreports.qt.nokia.com/browse/QTCREATORBUG-5326 + // http://bugreports.qt-project.org/browse/QTCREATORBUG-5326 void testChar() { @@ -5237,7 +5237,7 @@ namespace bug842 { void test842() { - // http://bugreports.qt.nokia.com/browse/QTCREATORBUG-842 + // http://bugreports.qt-project.org/browse/QTCREATORBUG-842 qWarning("Test"); BREAK_HERE; // Continue. @@ -5252,7 +5252,7 @@ namespace bug3611 { void test3611() { - // http://bugreports.qt.nokia.com/browse/QTCREATORBUG-3611 + // http://bugreports.qt-project.org/browse/QTCREATORBUG-3611 typedef unsigned char byte; byte f = '2'; int *x = (int*)&f; @@ -5274,7 +5274,7 @@ namespace bug3611 { namespace bug4019 { - // http://bugreports.qt.nokia.com/browse/QTCREATORBUG-4019 + // http://bugreports.qt-project.org/browse/QTCREATORBUG-4019 class A4019 { @@ -5300,7 +5300,7 @@ namespace bug4019 { namespace bug4997 { - // http://bugreports.qt.nokia.com/browse/QTCREATORBUG-4997 + // http://bugreports.qt-project.org/browse/QTCREATORBUG-4997 void test4997() { @@ -5314,7 +5314,7 @@ namespace bug4997 { namespace bug4904 { - // http://bugreports.qt.nokia.com/browse/QTCREATORBUG-4904 + // http://bugreports.qt-project.org/browse/QTCREATORBUG-4904 struct CustomStruct { int id; @@ -5349,7 +5349,7 @@ namespace bug4904 { namespace bug5046 { - // http://bugreports.qt.nokia.com/browse/QTCREATORBUG-5046 + // http://bugreports.qt-project.org/browse/QTCREATORBUG-5046 struct Foo { int a, b, c; }; @@ -5378,7 +5378,7 @@ namespace bug5046 { namespace bug5106 { - // http://bugreports.qt.nokia.com/browse/QTCREATORBUG-5106 + // http://bugreports.qt-project.org/browse/QTCREATORBUG-5106 class A5106 { @@ -5410,7 +5410,7 @@ namespace bug5106 { namespace bug5184 { - // http://bugreports.qt.nokia.com/browse/QTCREATORBUG-5184 + // http://bugreports.qt-project.org/browse/QTCREATORBUG-5184 // Note: The report there shows type field "QUrl &" instead of QUrl. // It's unclear how this can happen. It should never have been like @@ -5483,7 +5483,7 @@ namespace qc42170 { namespace bug5799 { - // https://bugreports.qt.nokia.com/browse/QTCREATORBUG-5799 + // https://bugreports.qt-project.org/browse/QTCREATORBUG-5799 typedef struct { int m1; int m2; } S1; @@ -5523,7 +5523,7 @@ namespace bug5799 { namespace bug6813 { - // https://bugreports.qt.nokia.com/browse/QTCREATORBUG-6813 + // https://bugreports.qt-project.org/browse/QTCREATORBUG-6813 void test6813() { int foo = 0; @@ -5603,7 +5603,7 @@ namespace cp42895 { namespace bug6465 { - // https://bugreports.qt.nokia.com/browse/QTCREATORBUG-6465 + // https://bugreports.qt-project.org/browse/QTCREATORBUG-6465 void test6465() {