diff options
author | David Robillard <d@drobilla.net> | 2020-11-27 17:57:37 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-11-27 21:42:51 +0100 |
commit | 6d5aca1fb1552ad791a59507ebbafcda7884cb6c (patch) | |
tree | 04511393c5b2f7d30ffcc07eb07ba00994cda917 /src | |
parent | 60a5b15002ea970ffaee6489a5a9322698e6d0b3 (diff) | |
download | patchage-6d5aca1fb1552ad791a59507ebbafcda7884cb6c.tar.gz patchage-6d5aca1fb1552ad791a59507ebbafcda7884cb6c.tar.bz2 patchage-6d5aca1fb1552ad791a59507ebbafcda7884cb6c.zip |
Fix redundant smart pointer get
Diffstat (limited to 'src')
-rw-r--r-- | src/PatchageModule.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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) |