From 6a6d0be0c659c28946c70a4774966ea9169acb25 Mon Sep 17 00:00:00 2001 From: Felix Morgner Date: Wed, 24 Jul 2024 11:18:46 +0200 Subject: turns: update header sorting rules and reformat code --- app/src/widgets/participant_row.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'app/src/widgets/participant_row.cpp') diff --git a/app/src/widgets/participant_row.cpp b/app/src/widgets/participant_row.cpp index 6a274d5..81d9e31 100644 --- a/app/src/widgets/participant_row.cpp +++ b/app/src/widgets/participant_row.cpp @@ -2,15 +2,16 @@ #include "turns/lang/messages.hpp" -#include -#include -#include - #include #include #include + #include +#include +#include +#include + namespace turns::app::widgets { namespace @@ -75,10 +76,9 @@ namespace turns::app::widgets { Glib::Binding::bind_property(participant->name(), m_title->property_label(), Glib::Binding::Flags::SYNC_CREATE); - Glib::Binding::bind_property(participant->priority(), - m_subtitle->property_label(), - Glib::Binding::Flags::SYNC_CREATE, - [](auto n) { return std::vformat(_(lang::priority_number), std::make_format_args(n)); }); + Glib::Binding::bind_property(participant->priority(), m_subtitle->property_label(), Glib::Binding::Flags::SYNC_CREATE, [](auto n) { + return std::vformat(_(lang::priority_number), std::make_format_args(n)); + }); Glib::Binding::bind_property(participant->disposition(), m_toggle_defeated->property_css_classes(), -- cgit v1.2.3