12345678910111213141516171819202122232425262728293031323334 |
- $OpenBSD: patch-src_app_qgisapp_cpp,v 1.19 2017/05/31 11:49:28 landry Exp $
- Fix paths to docs
- Index: src/app/qgisapp.cpp
- --- src/app/qgisapp.cpp.orig
- +++ src/app/qgisapp.cpp
- @@ -1712,7 +1712,7 @@ void QgisApp::createActions()
- mActionReportaBug->setShortcut( QString() );
- #endif
-
- - mActionHelpContents->setEnabled( QFileInfo( QgsApplication::pkgDataPath() + "/doc/index.html" ).exists() );
- + mActionHelpContents->setEnabled( QFileInfo( QgsApplication::pkgDataPath() + "/../doc/qgis/index.html" ).exists() );
-
- connect( mActionHelpContents, SIGNAL( triggered() ), this, SLOT( helpContents() ) );
- connect( mActionHelpAPI, SIGNAL( triggered() ), this, SLOT( apiDocumentation() ) );
- @@ -9160,7 +9160,7 @@ void QgisApp::helpContents()
-
- void QgisApp::apiDocumentation()
- {
- - if ( QFileInfo( QgsApplication::pkgDataPath() + "/doc/api/index.html" ).exists() )
- + if ( QFileInfo( QgsApplication::pkgDataPath() + "/../doc/qgis/api/index.html" ).exists() )
- {
- openURL( "api/index.html" );
- }
- @@ -9189,7 +9189,7 @@ void QgisApp::openURL( QString url, bool useQgisDocDir
- // open help in user browser
- if ( useQgisDocDirectory )
- {
- - url = "file://" + QgsApplication::pkgDataPath() + "/doc/" + url;
- + url = "file://" + QgsApplication::pkgDataPath() + "/../doc/qgis/" + url;
- }
- #ifdef Q_OS_MACX
- /* Use Mac OS X Launch Services which uses the user's default browser
|