diff options
author | Eike Ziller <eike.ziller@theqtcompany.com> | 2014-12-15 09:31:53 +0100 |
---|---|---|
committer | Eike Ziller <eike.ziller@theqtcompany.com> | 2014-12-19 10:18:23 +0100 |
commit | 487b05dba8b6e8f548ec3cd451965fdb6df71e4d (patch) | |
tree | e79c8f05a9a35f275cb04e602d515d3f79bfcdd0 /src | |
parent | 475c065dc8e9d4644e210658755504de614ab112 (diff) | |
download | qt-creator-487b05dba8b6e8f548ec3cd451965fdb6df71e4d.tar.gz |
Adapt bugtracker URL
Change-Id: I93a256f18e720edb0bcfc2b409c119abfdcf2a2b
Reviewed-by: Alex Blasche <alexander.blasche@theqtcompany.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/help/helpplugin.cpp | 2 | ||||
-rw-r--r-- | src/plugins/valgrind/callgrind/callgrinddatamodel.cpp | 2 | ||||
-rw-r--r-- | src/plugins/valgrind/callgrindtool.cpp | 2 | ||||
-rw-r--r-- | src/plugins/valgrind/callgrindvisualisation.cpp | 2 | ||||
-rw-r--r-- | src/plugins/valgrind/workarounds.h | 2 | ||||
-rw-r--r-- | src/tools/qtcreatorcrashhandler/utils.h | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/src/plugins/help/helpplugin.cpp b/src/plugins/help/helpplugin.cpp index 2cd1973535..b6c71eaeb6 100644 --- a/src/plugins/help/helpplugin.cpp +++ b/src/plugins/help/helpplugin.cpp @@ -660,7 +660,7 @@ void HelpPlugin::slotOpenSupportPage() void HelpPlugin::slotReportBug() { - QDesktopServices::openUrl(QUrl(QLatin1String("https://bugreports.qt-project.org"))); + QDesktopServices::openUrl(QUrl(QLatin1String("https://bugreports.qt.io"))); } void HelpPlugin::doSetupIfNeeded() diff --git a/src/plugins/valgrind/callgrind/callgrinddatamodel.cpp b/src/plugins/valgrind/callgrind/callgrinddatamodel.cpp index c1f01bcc84..7c82d08f72 100644 --- a/src/plugins/valgrind/callgrind/callgrinddatamodel.cpp +++ b/src/plugins/valgrind/callgrind/callgrinddatamodel.cpp @@ -186,7 +186,7 @@ QModelIndex DataModel::indexForObject(const Function *function) const } /** - * Evil workaround for https://bugreports.qt-project.org/browse/QTBUG-1135 + * Evil workaround for https://bugreports.qt.io/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 be13feb7e9..b40286cc89 100644 --- a/src/plugins/valgrind/callgrindtool.cpp +++ b/src/plugins/valgrind/callgrindtool.cpp @@ -794,7 +794,7 @@ QWidget *CallgrindToolPrivate::createWidgets() m_filterProjectCosts = action; // filter - ///FIXME: find workaround for https://bugreports.qt-project.org/browse/QTCREATORBUG-3247 + ///FIXME: find workaround for https://bugreports.qt.io/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 8507a1c9b1..0ad4a6c78c 100644 --- a/src/plugins/valgrind/callgrindvisualisation.cpp +++ b/src/plugins/valgrind/callgrindvisualisation.cpp @@ -54,7 +54,7 @@ // Margin from hardcoded value in: // QGraphicsView::fitInView(const QRectF &rect, // Qt::AspectRatioMode aspectRatioMode) -// Bug report here: https://bugreports.qt-project.org/browse/QTBUG-11945 +// Bug report here: https://bugreports.qt.io/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 80d545d23b..0ecd8c2099 100644 --- a/src/plugins/valgrind/workarounds.h +++ b/src/plugins/valgrind/workarounds.h @@ -37,7 +37,7 @@ QT_BEGIN_NAMESPACE class QPalette; QT_END_NAMESPACE -///FIXME: remove this once https://bugreports.qt-project.org/browse/QTCREATORBUG-3247 gets fixed +///FIXME: remove this once https://bugreports.qt.io/browse/QTCREATORBUG-3247 gets fixed QPalette panelPalette(const QPalette &oldPalette, bool lightColored = false); #endif // WORKAROUNDS_H diff --git a/src/tools/qtcreatorcrashhandler/utils.h b/src/tools/qtcreatorcrashhandler/utils.h index 4c7c74bad2..294503be87 100644 --- a/src/tools/qtcreatorcrashhandler/utils.h +++ b/src/tools/qtcreatorcrashhandler/utils.h @@ -35,7 +35,7 @@ #include <QString> const char APPLICATION_NAME[] = "Qt Creator Crash Handler"; -const char URL_BUGTRACKER[] = "https://bugreports.qt-project.org/"; +const char URL_BUGTRACKER[] = "https://bugreports.qt.io/"; QByteArray fileContents(const QString &filePath); |