From 6bcf6c01484c580b7b5846f9b0593e2b499d5aee Mon Sep 17 00:00:00 2001 From: Felix Morgner Date: Thu, 27 Mar 2025 19:44:46 +0100 Subject: adw: add more dialog functions --- include/turns/adw/breakpoint.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'include/turns/adw/breakpoint.hpp') diff --git a/include/turns/adw/breakpoint.hpp b/include/turns/adw/breakpoint.hpp index b274bbb..e5dabe3 100644 --- a/include/turns/adw/breakpoint.hpp +++ b/include/turns/adw/breakpoint.hpp @@ -84,19 +84,20 @@ namespace turns::adw using helpers::gobj_mixin::gobj; using helpers::gobj_mixin::gobj_copy; - explicit Breakpoint(BreakpointCondition & condition); Breakpoint(Breakpoint const & other) = delete; Breakpoint(Breakpoint && other) noexcept = default; auto operator=(Breakpoint const & other) noexcept -> Breakpoint & = delete; auto operator=(Breakpoint && other) noexcept -> Breakpoint & = default; + auto static create(BreakpointCondition & condition) -> Glib::RefPtr; auto static get_type() -> GType; auto static get_base_type() -> GType; auto property_condition() -> Glib::PropertyProxy; protected: + explicit Breakpoint(BreakpointCondition & condition); explicit Breakpoint(Glib::ConstructParams const & params); explicit Breakpoint(BaseObjectType * gobj); }; -- cgit v1.2.3