From b2687e893bfdeb76e18afd179826a90401443ff5 Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Sat, 5 Mar 2016 16:01:07 -0800 Subject: [PATCH] Fix member variable initialization order --- src/context.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/context.cpp b/src/context.cpp index 2366d76ee..a2203e026 100644 --- a/src/context.cpp +++ b/src/context.cpp @@ -44,8 +44,8 @@ Context::Context() , audioController(make_unique(this)) , initialLineState(make_unique(this)) , search(make_unique(this)) -, dialog(make_unique()) , path(make_unique(*config::path)) +, dialog(make_unique()) { subsController->SetSelectionController(selectionController.get()); }