@@ -8087,7 +8087,7 @@ void QgisApp::adjustBrightnessContrast( int delta, bool updateBrightness )
8087
8087
void QgisApp::helpContents ()
8088
8088
{
8089
8089
// 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/" )
8091
8091
.arg ( QGis::QGIS_VERSION_INT / 10000 )
8092
8092
.arg ( QGis::QGIS_VERSION_INT / 100 % 100 )
8093
8093
.arg ( tr ( " en" , " documentation language" ) ),
@@ -8102,18 +8102,18 @@ void QgisApp::apiDocumentation()
8102
8102
}
8103
8103
else
8104
8104
{
8105
- openURL ( " http ://qgis.org/api/" , false );
8105
+ openURL ( " https ://qgis.org/api/" , false );
8106
8106
}
8107
8107
}
8108
8108
8109
8109
void QgisApp::supportProviders ()
8110
8110
{
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 );
8112
8112
}
8113
8113
8114
8114
void QgisApp::helpQgisHomePage ()
8115
8115
{
8116
- openURL ( " http ://qgis.org" , false );
8116
+ openURL ( " https ://qgis.org" , false );
8117
8117
}
8118
8118
8119
8119
void QgisApp::openURL ( QString url, bool useQgisDocDirectory )
@@ -10187,19 +10187,19 @@ void QgisApp::oldProjectVersionWarning( const QString& oldVersion )
10187
10187
" <p>Version of the project file: %1<br>Current version of QGIS: %2" )
10188
10188
.arg ( oldVersion,
10189
10189
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> " ,
10191
10191
tr ( " <tt>Settings:Options:General</tt>" , " Menu path to setting options" ),
10192
10192
tr ( " Warn me when opening a project file saved with an older version of QGIS" ) );
10193
10193
QString title = tr ( " Project file is older" );
10194
10194
10195
10195
#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
10197
10197
QMessageBox box ( QMessageBox::Warning, title, tr ( " This project file was saved by an older version of QGIS" ), QMessageBox::Ok, NULL );
10198
10198
box.setDetailedText (
10199
10199
text.remove ( 0 , 3 )
10200
10200
.replace ( QString ( " <p>" ), QString ( " \n\n " ) )
10201
10201
.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 ( " \n http ://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 ( " \n https ://hub.qgis.org/projects/quantum-gis" ) )
10203
10203
.replace ( QRegExp ( " </?tt>" ), QString () )
10204
10204
);
10205
10205
box.exec ();
0 commit comments