From 0bc740ab7f99e45a7ed2e6d096448623ef427592 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Mon, 26 Oct 2020 14:57:52 +0100 Subject: [PATCH] HackStudio: Run clang-format --- DevTools/HackStudio/HackStudioWidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DevTools/HackStudio/HackStudioWidget.cpp b/DevTools/HackStudio/HackStudioWidget.cpp index 3381ba0f5b..2cd41c04a3 100644 --- a/DevTools/HackStudio/HackStudioWidget.cpp +++ b/DevTools/HackStudio/HackStudioWidget.cpp @@ -665,7 +665,7 @@ void HackStudioWidget::create_open_files_view(GUI::Widget& parent) auto open_files_model = GUI::ItemListModel::create(m_open_files_vector); m_open_files_view->set_model(open_files_model); - m_open_files_view->on_activation = [this] (auto& index) { + m_open_files_view->on_activation = [this](auto& index) { open_file(index.data().to_string()); }; }