diff options
| author | Felix Morgner <felix.morgner@gmail.com> | 2025-06-09 08:53:35 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@gmail.com> | 2025-06-09 08:54:11 +0200 |
| commit | 85b1b7b36b1aa8c7acadef5d74708ce4a3a79ef3 (patch) | |
| tree | c11ddf4bf6673a7307eef1856f8b069881a54762 /gui/include | |
| parent | b6b4399b20648de28def5411d90c4a3536da5b01 (diff) | |
| download | turns-85b1b7b36b1aa8c7acadef5d74708ce4a3a79ef3.tar.xz turns-85b1b7b36b1aa8c7acadef5d74708ce4a3a79ef3.zip | |
gui: make ParticipantRow default constructible
Diffstat (limited to 'gui/include')
| -rw-r--r-- | gui/include/participant_row.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gui/include/participant_row.hpp b/gui/include/participant_row.hpp index 1388e41..dd0eeea 100644 --- a/gui/include/participant_row.hpp +++ b/gui/include/participant_row.hpp @@ -32,7 +32,8 @@ namespace Turns::gui "toggle_defeated", }; - ParticipantRow(Glib::RefPtr<Turns::Participant> participant); + ParticipantRow(); + explicit ParticipantRow(Glib::RefPtr<Turns::Participant> participant); auto delete_enabled() -> Glib::PropertyProxy<bool>; auto edit_enabled() -> Glib::PropertyProxy<bool>; |
