Mercurial > hg > orthanc
changeset 2048:154f3e73ad3a
fix
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Fri, 24 Jun 2016 22:31:01 +0200 |
parents | 438f86ee19fc |
children | b89da14b3e8d |
files | Plugins/Samples/Common/OrthancPluginCppWrapper.cpp |
diffstat | 1 files changed, 7 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- 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)