Fix member variable initialization order

This commit is contained in:
Thomas Goyne 2016-03-05 16:01:07 -08:00
parent b6c1bb146b
commit b2687e893b
1 changed files with 1 additions and 1 deletions

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());
}