diff options
author | Andreas Kling <kling@serenityos.org> | 2020-10-26 14:57:52 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-10-26 14:58:17 +0100 |
commit | 0bc740ab7f99e45a7ed2e6d096448623ef427592 (patch) | |
tree | 4a00d82e2b47022198242055d4870bb80078b6cb | |
parent | 3d50923c4dc6512ca82855b64335098efd607bf9 (diff) | |
download | serenity-0bc740ab7f99e45a7ed2e6d096448623ef427592.zip |
HackStudio: Run clang-format
-rw-r--r-- | DevTools/HackStudio/HackStudioWidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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<String>::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()); }; } |