dtmail: resolve coverity warnings related to uninitialised members in C++ classes

This commit is contained in:
Peter Howkins
2018-04-20 02:36:24 +01:00
parent 3464e80165
commit f905d25392
31 changed files with 199 additions and 2 deletions

View File

@@ -337,6 +337,7 @@ ComposeCmd::ComposeCmd(
RoamMenuWindow *window
) : ComposeFamily( name, label, active, window )
{
_parent = NULL;
}
// Put up a blank compose window.
@@ -367,6 +368,7 @@ ForwardCmd::ForwardCmd(
) : ComposeFamily(name, label, active, window)
{
_forward = forward;
_parent = NULL;
}
// Forward or Include selected messages.
@@ -439,6 +441,7 @@ ReplyCmd::ReplyCmd (
) : ComposeFamily ( name, label, active, window )
{
_include = include;
_parent = NULL;
}
// For each message selected, reply to sender.
@@ -574,6 +577,7 @@ ReplyAllCmd::ReplyAllCmd(
) : ComposeFamily( name, label, active, window )
{
_include = include;
_parent = NULL;
}
// For each message selected, reply to everybody.