Skip to content

Commit

Permalink
Fix links to current documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
jgrocha committed Aug 9, 2017
1 parent 32624bb commit c9de9b2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion python/console/console.py
Expand Up @@ -657,7 +657,7 @@ def saveAsScriptFile(self, index=None):
self.updateTabListScript(pathFileName, action='remove')

def openHelp(self):
QgsHelp.openHelp("../pyqgis_developer_cookbook/intro.html#python-console")
QgsHelp.openHelp("plugins/python_console.html")

def openSettings(self):
if optionsDialog(self).exec_():
Expand Down
2 changes: 1 addition & 1 deletion src/app/qgsfieldcalculator.cpp
Expand Up @@ -486,5 +486,5 @@ void QgsFieldCalculator::setPrecisionMinMax()

void QgsFieldCalculator::helpRequest()
{
QgsHelp::openHelp( "working_with_vector/attribute_table.html#field-calculator" );
QgsHelp::openHelp( "working_with_vector/attribute_table.html#editing-attribute-values" );
}
2 changes: 1 addition & 1 deletion src/gui/qgsnewgeopackagelayerdialog.cpp
Expand Up @@ -477,5 +477,5 @@ bool QgsNewGeoPackageLayerDialog::apply()

void QgsNewGeoPackageLayerDialog::helpRequest()
{
QgsHelp::openHelp( "managing_data_source/opening_data.html#loading-a-layer-from-a-file" );
QgsHelp::openHelp( "managing_data_source/create_layers.html#creating-a-new-geopackage-layer" );
}
2 changes: 1 addition & 1 deletion src/gui/qgsnewhttpconnection.cpp
Expand Up @@ -334,5 +334,5 @@ void QgsNewHttpConnection::accept()

void QgsNewHttpConnection::helpRequest()
{
QgsHelp::openHelp( "managing_data_source/opening_data.html#connecting-to-web-services" );
QgsHelp::openHelp( "working_with_ogc/index.html" );
}

0 comments on commit c9de9b2

Please sign in to comment.