changeset 2221:900fb75351cd

NEWS
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 23 Apr 2025 09:31:59 +0200 (3 weeks ago)
parents a10b7a6ec869
children 22975e748165
files Applications/StoneWebViewer/NEWS Applications/StoneWebViewer/WebAssembly/ParseWebAssemblyExports.py
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/Applications/StoneWebViewer/NEWS	Tue Apr 22 18:18:30 2025 +0200
+++ b/Applications/StoneWebViewer/NEWS	Wed Apr 23 09:31:59 2025 +0200
@@ -1,7 +1,7 @@
 Pending changes in the mainline
 ===============================
 
-* Experimental support for DICOM SR "Measurement Report" (TID 1500)
+* Experimental support for DICOM SR "Measurement Report" (TID 1500 - only polylines)
 * Added "Print" and "Download" buttons in the PDF viewer toolbar
 * New configuration "ScreenshotTemplate" to define the filename generated by the
   "Download as JPEG" button. New default value is:
--- a/Applications/StoneWebViewer/WebAssembly/ParseWebAssemblyExports.py	Tue Apr 22 18:18:30 2025 +0200
+++ b/Applications/StoneWebViewer/WebAssembly/ParseWebAssemblyExports.py	Wed Apr 23 09:31:59 2025 +0200
@@ -172,7 +172,7 @@
                         arg['type'] = "'string'"
                     elif argType == 'double':
                         arg['type'] = "'double'"
-                    elif argType == 'size_t':
+                    elif argType in [ 'size_t', 'std::size_t' ]:
                         arg['type'] = "'int'"
                     elif argType in [ 'const void *', 'void *' ]:
                         arg['type'] = "'int'"