From aa3d6dd09fb2ecf4a5bf91536ca67b4f71b24613 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Wed, 15 Dec 2021 15:29:46 +0100 Subject: many: switch from using std::unique_ptr::get() to &*ptr --- tracker-fusion/fusion.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tracker-fusion/fusion.cpp') diff --git a/tracker-fusion/fusion.cpp b/tracker-fusion/fusion.cpp index 56a5fa33..fba38d3d 100644 --- a/tracker-fusion/fusion.cpp +++ b/tracker-fusion/fusion.cpp @@ -115,7 +115,7 @@ module_status fusion_tracker::start_tracker(QFrame* frame) other_frame->setFixedSize(320, 240); // XXX magic frame size other_frame->setVisible(false); - rot_tracker->start_tracker(other_frame.get()); + rot_tracker->start_tracker(&*other_frame); } end: -- cgit v1.2.3