1
0
mirror of https://github.com/odrling/Aegisub synced 2025-04-11 22:56:02 +02:00

Fix member variable initialization order

This commit is contained in:
Thomas Goyne 2016-03-05 16:01:07 -08:00
parent b6c1bb146b
commit b2687e893b

View File

@ -44,8 +44,8 @@ Context::Context()
, audioController(make_unique<AudioController>(this))
, initialLineState(make_unique<InitialLineState>(this))
, search(make_unique<SearchReplaceEngine>(this))
, dialog(make_unique<DialogManager>())
, path(make_unique<Path>(*config::path))
, dialog(make_unique<DialogManager>())
{
subsController->SetSelectionController(selectionController.get());
}