Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add new help links
  • Loading branch information
DelazJ authored and m-kuhn committed Feb 14, 2017
1 parent 77b2e97 commit 3496871
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/app/ogr/qgsvectorlayersaveasdialog.h
Expand Up @@ -20,7 +20,7 @@

#include <ui_qgsvectorlayersaveasdialogbase.h>
#include <QDialog>
#include "qgscontexthelp.h"
#include "qgshelp.h"
#include "qgsfields.h"
#include "qgsvectorfilewriter.h"
#include "qgis_app.h"
Expand Down Expand Up @@ -112,7 +112,7 @@ class APP_EXPORT QgsVectorLayerSaveAsDialog : public QDialog, private Ui::QgsVec
void on_leFilename_textChanged( const QString& text );
void on_browseFilename_clicked();
void on_mCrsSelector_crsChanged( const QgsCoordinateReferenceSystem& crs );
void on_buttonBox_helpRequested() { QgsContextHelp::run( metaObject()->className() ); }
void on_buttonBox_helpRequested() { QgsHelp::openHelp( QStringLiteral( "introduction/general_tools.html#save-layer-into-file" ) ); }
void on_mSymbologyExportComboBox_currentIndexChanged( const QString& text );
void on_mGeometryTypeComboBox_currentIndexChanged( int index );
void accept() override;
Expand Down
4 changes: 2 additions & 2 deletions src/gui/qgsnewvectorlayerdialog.h
Expand Up @@ -19,7 +19,7 @@

#include "ui_qgsnewvectorlayerdialogbase.h"
#include "qgisgui.h"
#include "qgscontexthelp.h"
#include "qgshelp.h"

#include "qgis.h"
#include "qgis_gui.h"
Expand Down Expand Up @@ -55,7 +55,7 @@ class GUI_EXPORT QgsNewVectorLayerDialog: public QDialog, private Ui::QgsNewVect
void on_mRemoveAttributeButton_clicked();
void on_mFileFormatComboBox_currentIndexChanged( int index );
void on_mTypeBox_currentIndexChanged( int index );
void on_buttonBox_helpRequested() { QgsContextHelp::run( metaObject()->className() ); }
void on_buttonBox_helpRequested() { QgsHelp::openHelp( QStringLiteral( "working_with_vector/editing_geometry_attributes.html#creating-a-new-shapefile-layer" ) ); }
void nameChanged( const QString& );
void selectionChanged();

Expand Down

0 comments on commit 3496871

Please sign in to comment.