From 3e68879c7901384913c03bd587b248a3fd79d9ff Mon Sep 17 00:00:00 2001 From: Felix Morgner Date: Wed, 30 Apr 2025 11:01:48 +0200 Subject: core: rename participant to Participant --- ui/src/participant_editor.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'ui/src/participant_editor.cpp') diff --git a/ui/src/participant_editor.cpp b/ui/src/participant_editor.cpp index 0016c02..9c0e0f1 100644 --- a/ui/src/participant_editor.cpp +++ b/ui/src/participant_editor.cpp @@ -40,7 +40,7 @@ namespace turns::ui auto constexpr static TEMPLATE = "/ch/arknet/Turns/participant_editor.ui"; } // namespace - ParticipantEditor::ParticipantEditor(Glib::RefPtr participant) + ParticipantEditor::ParticipantEditor(Glib::RefPtr participant) : Glib::ObjectBase{TYPE_NAME} , template_widget{TEMPLATE} , m_disposition{get_widget("disposition")} @@ -88,7 +88,7 @@ namespace turns::ui return m_name->get_text(); } - auto ParticipantEditor::get_participant() const -> Glib::RefPtr + auto ParticipantEditor::get_participant() const -> Glib::RefPtr { return m_participant.get_value(); } @@ -108,7 +108,7 @@ namespace turns::ui m_name->set_text(value); } - auto ParticipantEditor::set_participant(Glib::RefPtr const & value) -> void + auto ParticipantEditor::set_participant(Glib::RefPtr const & value) -> void { m_participant.set_value(value); } @@ -118,12 +118,12 @@ namespace turns::ui m_priority->set_value(value); } - auto ParticipantEditor::property_participant() -> Glib::PropertyProxy> + auto ParticipantEditor::property_participant() -> Glib::PropertyProxy> { return m_participant.get_proxy(); } - auto ParticipantEditor::property_participant() const -> Glib::PropertyProxy_ReadOnly> + auto ParticipantEditor::property_participant() const -> Glib::PropertyProxy_ReadOnly> { return m_participant.get_proxy(); } -- cgit v1.2.3