mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Address uninitialized member warnings
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
85dfb88f51
commit
1ecc9b0cc0
19 changed files with 50 additions and 18 deletions
|
@ -16,7 +16,8 @@ int getTotalWork()
|
|||
return dives;
|
||||
}
|
||||
|
||||
TemplateLayout::TemplateLayout(print_options *PrintOptions)
|
||||
TemplateLayout::TemplateLayout(print_options *PrintOptions) :
|
||||
m_engine(NULL)
|
||||
{
|
||||
this->PrintOptions = PrintOptions;
|
||||
}
|
||||
|
@ -80,7 +81,9 @@ QString TemplateLayout::generate()
|
|||
return htmlContent;
|
||||
}
|
||||
|
||||
Dive::Dive()
|
||||
Dive::Dive() :
|
||||
m_number(-1),
|
||||
dive(NULL)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue