1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-25 07:35:07 +00:00

HackStudio: Run clang-format

This commit is contained in:
Andreas Kling 2020-10-26 14:57:52 +01:00
parent 3d50923c4d
commit 0bc740ab7f

View file

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