Skip to content

Commit ba04dea

Browse files
committedMay 7, 2018
fix links to Qt issues
1 parent cb00869 commit ba04dea

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed
 

‎src/core/layout/qgslayoutexporter.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -994,8 +994,8 @@ void QgsLayoutExporter::preparePrintAsPdf( QgsLayout *layout, QPrinter &printer,
994994
// setOutputFormat should come after setOutputFileName, which auto-sets format to QPrinter::PdfFormat.
995995
// [LS] This should be QPrinter::NativeFormat for Mac, otherwise fonts are not embed-able
996996
// and text is not searchable; however, there are several bugs with <= Qt 4.8.5, 5.1.1, 5.2.0:
997-
// https://bugreports.qt-project.org/browse/QTBUG-10094 - PDF font embedding fails
998-
// https://bugreports.qt-project.org/browse/QTBUG-33583 - PDF output converts text to outline
997+
// https://bugreports.qt.io/browse/QTBUG-10094 - PDF font embedding fails
998+
// https://bugreports.qt.io/browse/QTBUG-33583 - PDF output converts text to outline
999999
// Also an issue with PDF paper size using QPrinter::NativeFormat on Mac (always outputs portrait letter-size)
10001000
printer.setOutputFormat( QPrinter::PdfFormat );
10011001

‎src/core/qgsfontutils.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -253,8 +253,8 @@ bool QgsFontUtils::loadStandardTestFonts( const QStringList &loadstyles )
253253
{
254254
// workaround for bugs with Qt 4.8.5 (other versions?) on Mac 10.9, where fonts
255255
// from qrc resources load but fail to work and default font is substituted [LS]:
256-
// https://bugreports.qt-project.org/browse/QTBUG-30917
257-
// https://bugreports.qt-project.org/browse/QTBUG-32789
256+
// https://bugreports.qt.io/browse/QTBUG-30917
257+
// https://bugreports.qt.io/browse/QTBUG-32789
258258
QString fontPath( QgsApplication::buildSourcePath() + "/tests/testdata/font/" + fontpath );
259259
int fontID = QFontDatabase::addApplicationFont( fontPath );
260260
loaded = ( fontID != -1 );

‎src/core/qgsnetworkcontentfetcher.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ void QgsNetworkContentFetcher::cancel()
9999
QTextCodec *QgsNetworkContentFetcher::codecForHtml( QByteArray &array ) const
100100
{
101101
//QTextCodec::codecForHtml fails to detect "<meta charset="utf-8"/>" type tags
102-
//see https://bugreports.qt-project.org/browse/QTBUG-41011
102+
//see https://bugreports.qt.io/browse/QTBUG-41011
103103
//so test for that ourselves
104104

105105
//basic check

‎src/gui/qgscolorswatchgrid.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,7 @@ void QgsColorSwatchGridAction::setColor( const QColor &color )
411411

412412
void QgsColorSwatchGridAction::onHover()
413413
{
414-
//see https://bugreports.qt-project.org/browse/QTBUG-10427?focusedCommentId=185610&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-185610
414+
//see https://bugreports.qt.io/browse/QTBUG-10427?focusedCommentId=185610&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-185610
415415

416416
if ( mSuppressRecurse )
417417
{

‎src/gui/qgscolorwidgets.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1685,7 +1685,7 @@ QgsColorWidgetAction::QgsColorWidgetAction( QgsColorWidget *colorWidget, QMenu *
16851685

16861686
void QgsColorWidgetAction::onHover()
16871687
{
1688-
//see https://bugreports.qt-project.org/browse/QTBUG-10427?focusedCommentId=185610&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-185610
1688+
//see https://bugreports.qt.io/browse/QTBUG-10427?focusedCommentId=185610&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-185610
16891689
if ( mSuppressRecurse )
16901690
{
16911691
return;

‎src/gui/qgstextformatwidget.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1020,7 +1020,7 @@ void QgsTextFormatWidget::populateFontCapitalsComboBox()
10201020
mFontCapitalsComboBox->addItem( tr( "All uppercase" ), QVariant( 1 ) );
10211021
mFontCapitalsComboBox->addItem( tr( "All lowercase" ), QVariant( 2 ) );
10221022
// Small caps doesn't work right with QPainterPath::addText()
1023-
// https://bugreports.qt-project.org/browse/QTBUG-13965
1023+
// https://bugreports.qt.io/browse/QTBUG-13965
10241024
// mFontCapitalsComboBox->addItem( tr( "Small caps" ), QVariant( 3 ) );
10251025
mFontCapitalsComboBox->addItem( tr( "Capitalize first letter" ), QVariant( 4 ) );
10261026
}

‎src/plugins/grass/qtermwidget/Session.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -134,9 +134,9 @@ WId Session::windowId() const
134134
// On Qt5, requesting window IDs breaks QQuickWidget and the likes,
135135
// for example, see the following bug reports:
136136
//
137-
// https://bugreports.qt-project.org/browse/QTBUG-41779
138-
// https://bugreports.qt-project.org/browse/QTBUG-40765
139-
// https://bugreports.qt-project.org/browse/QTBUG-41942
137+
// https://bugreports.qt.io/browse/QTBUG-41779
138+
// https://bugreports.qt.io/browse/QTBUG-40765
139+
// https://bugreports.qt.io/browse/QTBUG-41942
140140

141141
#if QT_VERSION >= QT_VERSION_CHECK(5, 0, 0)
142142
return 0;

‎src/providers/wms/qgswmsprovider.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2864,7 +2864,7 @@ QgsRasterIdentifyResult QgsWmsProvider::identify( const QgsPointXY &point, QgsRa
28642864
// Unfortunately the schema cannot be successfully loaded, it reports error
28652865
// "Element {http://www.opengis.net/gml}_Feature already defined"
28662866
// there is probably a bug in QXmlSchema:
2867-
// https://bugreports.qt-project.org/browse/QTBUG-8394
2867+
// https://bugreports.qt.io/browse/QTBUG-8394
28682868
// xmlpatternsvalidator gives the same error on XSD generated by OGR
28692869
if ( !schema.isValid() )
28702870
{

0 commit comments

Comments
 (0)
Please sign in to comment.