From d0a3b0a85c50c7c746b8ef17af19f4e88dfdf895 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Sun, 26 Sep 2021 10:00:53 +0200 Subject: tracker/{pt,wii}: fix awkward pt_preview::operator= --- tracker-pt/pt-api.hpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'tracker-pt/pt-api.hpp') diff --git a/tracker-pt/pt-api.hpp b/tracker-pt/pt-api.hpp index b87e7d65..75e880d4 100644 --- a/tracker-pt/pt-api.hpp +++ b/tracker-pt/pt-api.hpp @@ -69,7 +69,11 @@ protected: struct pt_preview : pt_frame { - virtual pt_preview& operator=(const pt_frame&) = 0; + pt_preview() = default; + + OTR_DISABLE_MOVE_COPY(pt_preview); + + virtual void set_last_frame(const pt_frame&) = 0; virtual QImage get_bitmap() = 0; virtual void draw_head_center(f x, f y) = 0; }; -- cgit v1.2.3