diff options
Diffstat (limited to 'src/Patchage.cpp')
-rw-r--r-- | src/Patchage.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Patchage.cpp b/src/Patchage.cpp index eae2ef9..7875bb9 100644 --- a/src/Patchage.cpp +++ b/src/Patchage.cpp @@ -171,7 +171,7 @@ Patchage::Patchage(int argc, char** argv) #endif { _conf = new Configuration(); - _canvas = boost::shared_ptr<PatchageCanvas>(new PatchageCanvas(this, 1600*2, 1200*2)); + _canvas = std::make_shared<PatchageCanvas>(this, 1600*2, 1200*2); while (argc > 0) { if (!strcmp(*argv, "-h") || !strcmp(*argv, "--help")) { |