From 6d5aca1fb1552ad791a59507ebbafcda7884cb6c Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 27 Nov 2020 17:57:37 +0100 Subject: Fix redundant smart pointer get --- src/PatchageModule.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/PatchageModule.cpp b/src/PatchageModule.cpp index 0b09a4f..8d8dfa7 100644 --- a/src/PatchageModule.cpp +++ b/src/PatchageModule.cpp @@ -25,7 +25,7 @@ PatchageModule::PatchageModule(Patchage* app, ModuleType type, double x, double y) - : Module(*app->canvas().get(), name, x, y) + : Module(*app->canvas(), name, x, y) , _app(app) , _menu(nullptr) , _name(name) -- cgit v1.2.1