mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +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;
|
return instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
MainWindow::MainWindow() : helpView(0)
|
MainWindow::MainWindow() : QMainWindow(),
|
||||||
|
actionNextDive(0),
|
||||||
|
actionPreviousDive(0),
|
||||||
|
helpView(0),
|
||||||
|
state(VIEWALL)
|
||||||
{
|
{
|
||||||
instance = this;
|
instance = this;
|
||||||
ui.setupUi(this);
|
ui.setupUi(this);
|
||||||
|
|
Loading…
Add table
Reference in a new issue