mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
mainwindow.cpp improvements
* Add missing variable members to the initializer lists. Signed-off-by: Boris Barbulovski <bbarbulovski@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
359ea75516
commit
b88958ded5
1 changed files with 5 additions and 1 deletions
|
@ -43,7 +43,11 @@ MainWindow* mainWindow()
|
|||
return instance;
|
||||
}
|
||||
|
||||
MainWindow::MainWindow() : helpView(0)
|
||||
MainWindow::MainWindow() : QMainWindow(),
|
||||
actionNextDive(0),
|
||||
actionPreviousDive(0),
|
||||
helpView(0),
|
||||
state(VIEWALL)
|
||||
{
|
||||
instance = this;
|
||||
ui.setupUi(this);
|
||||
|
|
Loading…
Reference in a new issue