@@ -1075,6 +1075,7 @@ void QgisApp::createActions()
1075
1075
1076
1076
connect ( mActionHelpContents , SIGNAL ( triggered () ), this , SLOT ( helpContents () ) );
1077
1077
connect ( mActionHelpAPI , SIGNAL ( triggered () ), this , SLOT ( apiDocumentation () ) );
1078
+ connect ( mActionNeedSupport , SIGNAL ( triggered () ), this , SLOT ( supportProviders () ) );
1078
1079
connect ( mActionQgisHomePage , SIGNAL ( triggered () ), this , SLOT ( helpQgisHomePage () ) );
1079
1080
connect ( mActionCheckQgisVersion , SIGNAL ( triggered () ), this , SLOT ( checkQgisVersion () ) );
1080
1081
connect ( mActionAbout , SIGNAL ( triggered () ), this , SLOT ( about () ) );
@@ -6556,7 +6557,8 @@ void QgisApp::adjustBrightnessContrast( int delta, bool updateBrightness )
6556
6557
6557
6558
void QgisApp::helpContents ()
6558
6559
{
6559
- openURL ( " index.html" );
6560
+ // We should really ship the HTML version of the docs local too.
6561
+ openURL ( " http://docs.qgis.org/2.0/html/en/docs/user_manual/index.html" , false );
6560
6562
}
6561
6563
6562
6564
void QgisApp::apiDocumentation ()
@@ -6571,6 +6573,11 @@ void QgisApp::apiDocumentation()
6571
6573
}
6572
6574
}
6573
6575
6576
+ void QgisApp::supportProviders ()
6577
+ {
6578
+ openURL ( " http://www.qgis.org/en/commercial-support.html" , false );
6579
+ }
6580
+
6574
6581
void QgisApp::helpQgisHomePage ()
6575
6582
{
6576
6583
openURL ( " http://qgis.org" , false );
0 commit comments