summaryrefslogtreecommitdiff
path: root/gui/src/init.cpp
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@gmail.com>2025-06-05 14:30:13 +0200
committerFelix Morgner <felix.morgner@gmail.com>2025-06-05 14:30:13 +0200
commit838e660750b589636b95472f7421b5579f068727 (patch)
tree63bd5bcb124cdef0cc5197aa1c9fdbe9803055bb /gui/src/init.cpp
parent85f0a9cc53e51106b7601b6ae10b5fb169613184 (diff)
downloadturns-838e660750b589636b95472f7421b5579f068727.tar.xz
turns-838e660750b589636b95472f7421b5579f068727.zip
gui: reintroduce participant editor
Diffstat (limited to 'gui/src/init.cpp')
-rw-r--r--gui/src/init.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/gui/src/init.cpp b/gui/src/init.cpp
index c9a7295..734f953 100644
--- a/gui/src/init.cpp
+++ b/gui/src/init.cpp
@@ -1,10 +1,12 @@
#include "init.hpp"
+#include "participant_editor.hpp"
#include "participant_row.hpp"
#include <glib-object.h>
auto Turns::gui::init() -> void
{
- static_cast<void>(ParticipantRow{nullptr}.get_type());
+ g_type_ensure(ParticipantRow{nullptr}.get_type());
+ g_type_ensure(ParticipantEditor{nullptr}.get_type());
}