diff options
| author | Felix Morgner <felix.morgner@gmail.com> | 2024-07-15 16:45:46 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@gmail.com> | 2024-07-15 16:45:46 +0200 |
| commit | e28cff88c03afa5cd90951deeff62b4efb910421 (patch) | |
| tree | 8f8f35696156c3647e59d07bf139e0a54844766d /app/include | |
| parent | a23cda29f0acef40d883c37209389c956c14e83b (diff) | |
| download | turns-e28cff88c03afa5cd90951deeff62b4efb910421.tar.xz turns-e28cff88c03afa5cd90951deeff62b4efb910421.zip | |
app: rename participant_list_row
Diffstat (limited to 'app/include')
| -rw-r--r-- | app/include/turns/app/widgets/participant_row.hpp (renamed from app/include/turns/app/widgets/participant_list_row.hpp) | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app/include/turns/app/widgets/participant_list_row.hpp b/app/include/turns/app/widgets/participant_row.hpp index 6a9a6c2..a8f225f 100644 --- a/app/include/turns/app/widgets/participant_list_row.hpp +++ b/app/include/turns/app/widgets/participant_row.hpp @@ -1,5 +1,5 @@ -#ifndef TURNS_APP_WIDGETS_PARTICIPANT_LIST_ROW_HPP -#define TURNS_APP_WIDGETS_PARTICIPANT_LIST_ROW_HPP +#ifndef TURNS_APP_WIDGETS_PARTICIPANT_ROW_HPP +#define TURNS_APP_WIDGETS_PARTICIPANT_ROW_HPP #include "turns/app/widgets/template_widget.hpp" #include "turns/domain/participant.hpp" @@ -16,7 +16,7 @@ namespace turns::app::widgets { - struct participant_list_row : template_widget<participant_list_row, Gtk::ListBoxRow> + struct participant_row : template_widget<participant_row, Gtk::ListBoxRow> { auto constexpr inline static children = std::array{ "delete", @@ -26,7 +26,7 @@ namespace turns::app::widgets "toggle_defeated", }; - participant_list_row(Glib::RefPtr<domain::participant> participant); + participant_row(Glib::RefPtr<domain::participant> participant); auto set_subtitle(Glib::ustring const & value) -> void; auto set_title(Glib::ustring const & value) -> void; |
