summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@gmail.com>2025-05-16 16:14:15 +0200
committerFelix Morgner <felix.morgner@gmail.com>2025-05-16 16:14:15 +0200
commit39d704461bff127a54b0b64e68135ed48b3d989b (patch)
treec4ebf37d729bd68f107450010b0e908227e7d609 /lib
parentd30e905b18bbde6918cd813ce57625f4ec955f1b (diff)
downloadturns-39d704461bff127a54b0b64e68135ed48b3d989b.tar.xz
turns-39d704461bff127a54b0b64e68135ed48b3d989b.zip
lib: remove participant-count property
Diffstat (limited to 'lib')
-rw-r--r--lib/src/turnsmm/turn-order.cpp5
-rw-r--r--lib/src/turnsmm/turn-order.hpp1
2 files changed, 0 insertions, 6 deletions
diff --git a/lib/src/turnsmm/turn-order.cpp b/lib/src/turnsmm/turn-order.cpp
index 8ff7210..b29589e 100644
--- a/lib/src/turnsmm/turn-order.cpp
+++ b/lib/src/turnsmm/turn-order.cpp
@@ -89,11 +89,6 @@ namespace Turns
return turns_turn_order_get_running(const_cast<BaseObjectType *>(unwrap(this)));
}
- auto TurnOrder::property_participant_count() const noexcept -> Glib::PropertyProxy_ReadOnly<std::size_t>
- {
- return {this, "participant-count"};
- }
-
auto TurnOrder::property_running() const noexcept -> Glib::PropertyProxy_ReadOnly<bool>
{
return {this, "running"};
diff --git a/lib/src/turnsmm/turn-order.hpp b/lib/src/turnsmm/turn-order.hpp
index 2dfa2ca..8e6cdb3 100644
--- a/lib/src/turnsmm/turn-order.hpp
+++ b/lib/src/turnsmm/turn-order.hpp
@@ -37,7 +37,6 @@ namespace Turns
[[nodiscard]] auto get_participant_count() const noexcept -> std::size_t;
[[nodiscard]] auto get_running() const noexcept -> bool;
- [[nodiscard]] auto property_participant_count() const noexcept -> Glib::PropertyProxy_ReadOnly<std::size_t>;
[[nodiscard]] auto property_running() const noexcept -> Glib::PropertyProxy_ReadOnly<bool>;
protected: