# HG changeset patch # User Sebastien Jodogne # Date 1466800261 -7200 # Node ID 154f3e73ad3aeec4e46e573f7eab4609764b5b5a # Parent 438f86ee19fcf9a0c49d6317b04a5c218a3ee661 fix diff -r 438f86ee19fc -r 154f3e73ad3a Plugins/Samples/Common/OrthancPluginCppWrapper.cpp --- a/Plugins/Samples/Common/OrthancPluginCppWrapper.cpp Fri Jun 24 22:28:25 2016 +0200 +++ b/Plugins/Samples/Common/OrthancPluginCppWrapper.cpp Fri Jun 24 22:31:01 2016 +0200 @@ -581,7 +581,7 @@ } - OrthancImage::Image(OrthancPluginContext* context) : + OrthancImage::OrthancImage(OrthancPluginContext* context) : context_(context), image_(NULL) { @@ -592,8 +592,8 @@ } - OrthancImage::Image(OrthancPluginContext* context, - OrthancPluginImage* image) : + OrthancImage::OrthancImage(OrthancPluginContext* context, + OrthancPluginImage* image) : context_(context), image_(image) { @@ -604,10 +604,10 @@ } - OrthancImage::Image(OrthancPluginContext* context, - OrthancPluginPixelFormat format, - uint32_t width, - uint32_t height) : + OrthancImage::OrthancImage(OrthancPluginContext* context, + OrthancPluginPixelFormat format, + uint32_t width, + uint32_t height) : context_(context) { if (context == NULL)