Parcourir la source

FIX: wrong parameter name in SOAP message of notifyStateChanged

ivowolf il y a 15 ans
Parent
commit
dad6f7e09e
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      Plugins/org.commontk.dicom.wg23.app/ctkDicomHostService.cpp

+ 1 - 1
Plugins/org.commontk.dicom.wg23.app/ctkDicomHostService.cpp

@@ -69,7 +69,7 @@ void ctkDicomHostService::notifyStateChanged(ctkDicomWG23::State state)
 {
   Q_D(ctkDicomService);
 
-  QtSoapType* input = new ctkDicomSoapState("stateChanged", state);
+  QtSoapType* input = new ctkDicomSoapState("state", state);
   d->askHost("notifyStateChanged", input);
 }