summaryrefslogtreecommitdiff
path: root/app/include
diff options
context:
space:
mode:
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;