Skip to content

Commit ec1097c

Browse files
committedNov 11, 2015
Change links to https
1 parent 2175e7a commit ec1097c

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed
 

‎src/app/qgisapp.cpp

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8087,7 +8087,7 @@ void QgisApp::adjustBrightnessContrast( int delta, bool updateBrightness )
80878087
void QgisApp::helpContents()
80888088
{
80898089
// We should really ship the HTML version of the docs local too.
8090-
openURL( QString( "http://docs.qgis.org/%1.%2/%3/docs/user_manual/" )
8090+
openURL( QString( "https://docs.qgis.org/%1.%2/%3/docs/user_manual/" )
80918091
.arg( QGis::QGIS_VERSION_INT / 10000 )
80928092
.arg( QGis::QGIS_VERSION_INT / 100 % 100 )
80938093
.arg( tr( "en", "documentation language" ) ),
@@ -8102,18 +8102,18 @@ void QgisApp::apiDocumentation()
81028102
}
81038103
else
81048104
{
8105-
openURL( "http://qgis.org/api/", false );
8105+
openURL( "https://qgis.org/api/", false );
81068106
}
81078107
}
81088108

81098109
void QgisApp::supportProviders()
81108110
{
8111-
openURL( tr( "http://qgis.org/en/site/forusers/commercial_support.html" ), false );
8111+
openURL( tr( "https://qgis.org/en/site/forusers/commercial_support.html" ), false );
81128112
}
81138113

81148114
void QgisApp::helpQgisHomePage()
81158115
{
8116-
openURL( "http://qgis.org", false );
8116+
openURL( "https://qgis.org", false );
81178117
}
81188118

81198119
void QgisApp::openURL( QString url, bool useQgisDocDirectory )
@@ -10187,19 +10187,19 @@ void QgisApp::oldProjectVersionWarning( const QString& oldVersion )
1018710187
"<p>Version of the project file: %1<br>Current version of QGIS: %2" )
1018810188
.arg( oldVersion,
1018910189
QGis::QGIS_VERSION,
10190-
"<a href=\"http://hub.qgis.org/projects/quantum-gis\">http://hub.qgis.org/projects/quantum-gis</a> ",
10190+
"<a href=\"https://hub.qgis.org/projects/quantum-gis\">https://hub.qgis.org/projects/quantum-gis</a> ",
1019110191
tr( "<tt>Settings:Options:General</tt>", "Menu path to setting options" ),
1019210192
tr( "Warn me when opening a project file saved with an older version of QGIS" ) );
1019310193
QString title = tr( "Project file is older" );
1019410194

1019510195
#ifdef ANDROID
10196-
//this is needed to deal with http://hub.qgis.org/issues/4573
10196+
//this is needed to deal with https://hub.qgis.org/issues/4573
1019710197
QMessageBox box( QMessageBox::Warning, title, tr( "This project file was saved by an older version of QGIS" ), QMessageBox::Ok, NULL );
1019810198
box.setDetailedText(
1019910199
text.remove( 0, 3 )
1020010200
.replace( QString( "<p>" ), QString( "\n\n" ) )
1020110201
.replace( QString( "<br>" ), QString( "\n" ) )
10202-
.replace( QString( "<a href=\"http://hub.qgis.org/projects/quantum-gis\">http://hub.qgis.org/projects/quantum-gis</a> " ), QString( "\nhttp://hub.qgis.org/projects/quantum-gis" ) )
10202+
.replace( QString( "<a href=\"https://hub.qgis.org/projects/quantum-gis\">https://hub.qgis.org/projects/quantum-gis</a> " ), QString( "\nhttps://hub.qgis.org/projects/quantum-gis" ) )
1020310203
.replace( QRegExp( "</?tt>" ), QString() )
1020410204
);
1020510205
box.exec();

0 commit comments

Comments
 (0)
Please sign in to comment.