summaryrefslogtreecommitdiffhomepage
path: root/tracker-fusion
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2021-12-15 15:29:46 +0100
committerStanislaw Halik <sthalik@misaki.pl>2021-12-16 15:32:03 +0100
commitaa3d6dd09fb2ecf4a5bf91536ca67b4f71b24613 (patch)
tree50d55ab1822ba68733325955ce6be24d82752a87 /tracker-fusion
parent94cdd29400d739fcec664266537ecf3904a8476d (diff)
many: switch from using std::unique_ptr<t>::get() to &*ptr
Diffstat (limited to 'tracker-fusion')
-rw-r--r--tracker-fusion/fusion.cpp2
1 files changed, 1 insertions, 1 deletions
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: