From 0793fb99ee8c55c7ffe96bca902632f328e10edb Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Sun, 19 Oct 2014 12:20:59 +0300 Subject: [PATCH] Derive Slice from sigc::trackable as it connects to external signals --- source/io/slice.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/io/slice.h b/source/io/slice.h index f611585..bcfef50 100644 --- a/source/io/slice.h +++ b/source/io/slice.h @@ -16,7 +16,7 @@ its range. If the offset of the underlying object is changed, the Slice will restore it before the next access. This enables multiple Slices to be created on top of the same object. */ -class Slice: public Seekable +class Slice: public Seekable, public sigc::trackable { private: Seekable &below; -- 2.43.0