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/src/init.cpp | |
| parent | b6b4399b20648de28def5411d90c4a3536da5b01 (diff) | |
| download | turns-85b1b7b36b1aa8c7acadef5d74708ce4a3a79ef3.tar.xz turns-85b1b7b36b1aa8c7acadef5d74708ce4a3a79ef3.zip | |
gui: make ParticipantRow default constructible
Diffstat (limited to 'gui/src/init.cpp')
| -rw-r--r-- | gui/src/init.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/src/init.cpp b/gui/src/init.cpp index 378065c..9192d37 100644 --- a/gui/src/init.cpp +++ b/gui/src/init.cpp @@ -15,7 +15,7 @@ auto Turns::gui::init() -> void { - g_type_ensure(ParticipantRow{nullptr}.get_type()); + g_type_ensure(ParticipantRow{}.get_type()); g_type_ensure(ParticipantEditor{nullptr}.get_type()); g_type_ensure(Preferences{}.get_type()); g_type_ensure(Tracker{{}, {}}.get_type()); |
