diff options
author | Andre Hartmann <[email protected]> | 2025-05-18 07:27:35 +0200 |
---|---|---|
committer | André Hartmann <[email protected]> | 2025-05-18 07:33:07 +0000 |
commit | 23106f1014f2927f215875e6c09bb5f846ad9408 (patch) | |
tree | d616e76a88b6899d90535118fba5f842083bede6 /src | |
parent | 6e26b72775544df731491dd7f71d34348310ce79 (diff) |
Git: GitSubmitEditorWidget: Init more pointer members
Change-Id: I1fbde23c35075c26e1743cfe9f32cc1787d678be
Reviewed-by: Orgad Shaneh <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/git/gitsubmiteditorwidget.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/git/gitsubmiteditorwidget.h b/src/plugins/git/gitsubmiteditorwidget.h index 6d788e3a98e..0d859f54773 100644 --- a/src/plugins/git/gitsubmiteditorwidget.h +++ b/src/plugins/git/gitsubmiteditorwidget.h @@ -64,10 +64,10 @@ private: void setPanelInfo(const GitSubmitEditorPanelInfo &info); PushAction m_pushAction = NoPush; - GitSubmitPanel *m_gitSubmitPanel; + GitSubmitPanel *m_gitSubmitPanel = nullptr; GitSubmitHighlighter *m_highlighter = nullptr; LogChangeWidget *m_logChangeWidget = nullptr; - QValidator *m_emailValidator; + QValidator *m_emailValidator = nullptr; QString m_originalAuthor; QString m_originalEmail; QStringList m_range; |