diff options
Diffstat (limited to 'ui/include')
| -rw-r--r-- | ui/include/turns/ui/participant_editor.hpp | 12 | ||||
| -rw-r--r-- | ui/include/turns/ui/participant_row.hpp | 2 |
2 files changed, 7 insertions, 7 deletions
diff --git a/ui/include/turns/ui/participant_editor.hpp b/ui/include/turns/ui/participant_editor.hpp index 0b1e0f1..3dfd7fb 100644 --- a/ui/include/turns/ui/participant_editor.hpp +++ b/ui/include/turns/ui/participant_editor.hpp @@ -41,20 +41,20 @@ namespace turns::ui "priority", }; - explicit ParticipantEditor(Glib::RefPtr<core::participant> participant); + explicit ParticipantEditor(Glib::RefPtr<core::Participant> participant); [[nodiscard]] auto get_disposition() const -> core::disposition; [[nodiscard]] auto get_name() const -> Glib::ustring; - [[nodiscard]] auto get_participant() const -> Glib::RefPtr<core::participant>; + [[nodiscard]] auto get_participant() const -> Glib::RefPtr<core::Participant>; [[nodiscard]] auto get_priority() const -> double; auto set_disposition(core::disposition value) -> void; auto set_name(Glib::ustring const & value) -> void; - auto set_participant(Glib::RefPtr<core::participant> const & value) -> void; + auto set_participant(Glib::RefPtr<core::Participant> const & value) -> void; auto set_priority(double value) -> void; - [[nodiscard]] auto property_participant() -> Glib::PropertyProxy<Glib::RefPtr<core::participant>>; - [[nodiscard]] auto property_participant() const -> Glib::PropertyProxy_ReadOnly<Glib::RefPtr<core::participant>>; + [[nodiscard]] auto property_participant() -> Glib::PropertyProxy<Glib::RefPtr<core::Participant>>; + [[nodiscard]] auto property_participant() const -> Glib::PropertyProxy_ReadOnly<Glib::RefPtr<core::Participant>>; auto signal_finished() -> SignalFinishedType; @@ -71,7 +71,7 @@ namespace turns::ui Glib::RefPtr<Gtk::SignalListItemFactory> m_disposition_factory; Glib::RefPtr<Gtk::StringList> m_disposition_model; - Glib::Property<Glib::RefPtr<core::participant>> m_participant; + Glib::Property<Glib::RefPtr<core::Participant>> m_participant; SignalFinishedType m_signal_finished{}; }; diff --git a/ui/include/turns/ui/participant_row.hpp b/ui/include/turns/ui/participant_row.hpp index ed7b47c..561214b 100644 --- a/ui/include/turns/ui/participant_row.hpp +++ b/ui/include/turns/ui/participant_row.hpp @@ -27,7 +27,7 @@ namespace turns::ui "toggle_defeated", }; - ParticipantRow(Glib::RefPtr<core::participant> participant); + ParticipantRow(Glib::RefPtr<core::Participant> participant); auto delete_enabled() -> Glib::PropertyProxy<bool>; auto edit_enabled() -> Glib::PropertyProxy<bool>; |
