forked from mia/Aegisub
Fix member variable initialization order
This commit is contained in:
parent
b6c1bb146b
commit
b2687e893b
1 changed files with 1 additions and 1 deletions
|
@ -44,8 +44,8 @@ Context::Context()
|
||||||
, audioController(make_unique<AudioController>(this))
|
, audioController(make_unique<AudioController>(this))
|
||||||
, initialLineState(make_unique<InitialLineState>(this))
|
, initialLineState(make_unique<InitialLineState>(this))
|
||||||
, search(make_unique<SearchReplaceEngine>(this))
|
, search(make_unique<SearchReplaceEngine>(this))
|
||||||
, dialog(make_unique<DialogManager>())
|
|
||||||
, path(make_unique<Path>(*config::path))
|
, path(make_unique<Path>(*config::path))
|
||||||
|
, dialog(make_unique<DialogManager>())
|
||||||
{
|
{
|
||||||
subsController->SetSelectionController(selectionController.get());
|
subsController->SetSelectionController(selectionController.get());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue