Skip to content

Commit

Permalink
Initialise pointers in header for QActions
Browse files Browse the repository at this point in the history
  • Loading branch information
pblottiere committed Oct 9, 2017
1 parent 9d28094 commit 070cc6a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/app/qgsvectorlayerproperties.h
Expand Up @@ -229,11 +229,11 @@ class APP_EXPORT QgsVectorLayerProperties : public QgsOptionsDialogBase, private

QgsMetadataWidget *mMetadataWidget = nullptr;

QAction *mAuxiliaryLayerActionNew;
QAction *mAuxiliaryLayerActionClear;
QAction *mAuxiliaryLayerActionDelete;
QAction *mAuxiliaryLayerActionExport;
QAction *mAuxiliaryLayerActionDeleteField;
QAction *mAuxiliaryLayerActionNew = nullptr;
QAction *mAuxiliaryLayerActionClear = nullptr;
QAction *mAuxiliaryLayerActionDelete = nullptr;
QAction *mAuxiliaryLayerActionExport = nullptr;
QAction *mAuxiliaryLayerActionDeleteField = nullptr;

private slots:
void openPanel( QgsPanelWidget *panel );
Expand Down

0 comments on commit 070cc6a

Please sign in to comment.