mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-27 00:33:48 -05:00
Fix some Coverity uninitialized member warnings
This commit is contained in:
parent
2b04c813ba
commit
cf905c9f32
@ -47,7 +47,7 @@ class QgsReportOrganizerWidget: public QgsPanelWidget, private Ui::QgsReportOrga
|
||||
|
||||
QgsReport *mReport = nullptr;
|
||||
QgsReportSectionModel *mSectionModel = nullptr;
|
||||
QgsMessageBar *mMessageBar;
|
||||
QgsMessageBar *mMessageBar = nullptr;
|
||||
QgsLayoutDesignerDialog *mDesigner = nullptr;
|
||||
QWidget *mConfigWidget = nullptr;
|
||||
|
||||
|
@ -131,26 +131,26 @@ class APP_EXPORT QgsSnappingWidget : public QWidget
|
||||
|
||||
QAction *mEnabledAction = nullptr;
|
||||
QToolButton *mModeButton = nullptr;
|
||||
QAction *mModeAction; // hide widget does not work on toolbar, action needed
|
||||
QAction *mModeAction = nullptr; // hide widget does not work on toolbar, action needed
|
||||
QAction *mAllLayersAction = nullptr;
|
||||
QAction *mActiveLayerAction = nullptr;
|
||||
QAction *mAdvancedModeAction = nullptr;
|
||||
QAction *mEditAdvancedConfigAction = nullptr;
|
||||
QToolButton *mTypeButton = nullptr;
|
||||
QAction *mTypeAction; // hide widget does not work on toolbar, action needed
|
||||
QAction *mTypeAction = nullptr; // hide widget does not work on toolbar, action needed
|
||||
QAction *mVertexAction = nullptr;
|
||||
QAction *mSegmentAction = nullptr;
|
||||
QAction *mVertexAndSegmentAction = nullptr;
|
||||
QDoubleSpinBox *mToleranceSpinBox = nullptr;
|
||||
QAction *mToleranceAction; // hide widget does not work on toolbar, action needed
|
||||
QAction *mToleranceAction = nullptr; // hide widget does not work on toolbar, action needed
|
||||
QComboBox *mUnitsComboBox = nullptr;
|
||||
QAction *mUnitAction; // hide widget does not work on toolbar, action needed
|
||||
QAction *mUnitAction = nullptr; // hide widget does not work on toolbar, action needed
|
||||
QAction *mTopologicalEditingAction = nullptr;
|
||||
QAction *mIntersectionSnappingAction = nullptr;
|
||||
QAction *mEnableTracingAction = nullptr;
|
||||
QgsDoubleSpinBox *mTracingOffsetSpinBox = nullptr;
|
||||
QTreeView *mLayerTreeView = nullptr;
|
||||
QgsFloatingWidget *mAdvancedConfigContainer;
|
||||
QgsFloatingWidget *mAdvancedConfigContainer = nullptr;
|
||||
|
||||
void cleanGroup( QgsLayerTreeNode *node );
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user