Index: etc/reports/cppcheck/cppcheck.err =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- etc/reports/cppcheck/cppcheck.err (.../cppcheck.err) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ etc/reports/cppcheck/cppcheck.err (.../cppcheck.err) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -1,4 +1,4 @@ -04/21/2025 17:38 +04/25/2025 20:19 Behrouz NematiPour /home/denali/Public/luis/application/sources/canbus/MessageAcknowModel.h:58:9: performance: When an object of a class is created, the constructors of all member variables are called consecutively in the order the variables are declared, even if you don't explicitly write them to the initialization list. You could avoid assigning '_sequence' a value by passing the value to the constructor in the initialization list. [useInitializationList] _sequence = vSequence ; @@ -48,7 +48,7 @@ /home/denali/Public/luis/application/sources/ApplicationPost.cpp:303:10: note: Condition '!ok' is always false if ( ! ok ) emit didFail(Gui::GuiAlarmID::ALARM_ID_UI_POST_FAILURE_SOUND); ^ -/home/denali/Public/luis/application/sources/MainTimer.cpp:78:16: style: The scope of the variable 'oH' can be reduced. Warning: Be careful when fixing this message, especially when there are inner loops. Here is an example where cppcheck will write that the scope for 'i' can be reduced: +/home/denali/Public/luis/application/sources/MainTimer.cpp:75:16: style: The scope of the variable 'oH' can be reduced. Warning: Be careful when fixing this message, especially when there are inner loops. Here is an example where cppcheck will write that the scope for 'i' can be reduced: void f(int x) { int i = 0; @@ -63,7 +63,7 @@ When you see this message it is always safe to reduce the variable scope 1 level. [variableScope] static int oH,oM,oS; int cH,cM,cS; ^ -/home/denali/Public/luis/application/sources/MainTimer.cpp:78:19: style: The scope of the variable 'oM' can be reduced. Warning: Be careful when fixing this message, especially when there are inner loops. Here is an example where cppcheck will write that the scope for 'i' can be reduced: +/home/denali/Public/luis/application/sources/MainTimer.cpp:75:19: style: The scope of the variable 'oM' can be reduced. Warning: Be careful when fixing this message, especially when there are inner loops. Here is an example where cppcheck will write that the scope for 'i' can be reduced: void f(int x) { int i = 0; @@ -78,7 +78,7 @@ When you see this message it is always safe to reduce the variable scope 1 level. [variableScope] static int oH,oM,oS; int cH,cM,cS; ^ -/home/denali/Public/luis/application/sources/MainTimer.cpp:78:22: style: The scope of the variable 'oS' can be reduced. Warning: Be careful when fixing this message, especially when there are inner loops. Here is an example where cppcheck will write that the scope for 'i' can be reduced: +/home/denali/Public/luis/application/sources/MainTimer.cpp:75:22: style: The scope of the variable 'oS' can be reduced. Warning: Be careful when fixing this message, especially when there are inner loops. Here is an example where cppcheck will write that the scope for 'i' can be reduced: void f(int x) { int i = 0; @@ -93,79 +93,79 @@ When you see this message it is always safe to reduce the variable scope 1 level. [variableScope] static int oH,oM,oS; int cH,cM,cS; ^ -/home/denali/Public/luis/application/sources/canbus/MessageInterpreter.cpp:557:9: style: Statements following return, break, continue, goto or throw will never be executed. [unreachableCode] +/home/denali/Public/luis/application/sources/canbus/MessageInterpreter.cpp:575:9: style: Statements following return, break, continue, goto or throw will never be executed. [unreachableCode] LOG_APPED(QString("DG,CheckIn," + QVariant(vData).toStringList().join(','))); break; ^ -/home/denali/Public/luis/application/sources/cloudsync/CloudSyncController.cpp:310:10: style: The if condition is the same as the previous if condition [duplicateCondition] +/home/denali/Public/luis/application/sources/cloudsync/CloudSyncController.cpp:303:10: style: The if condition is the same as the previous if condition [duplicateCondition] if ( ! ok ) { error = eError_OutFileExist; args = {{ _location }}; ok = false; goto lErr; } ^ -/home/denali/Public/luis/application/sources/cloudsync/CloudSyncController.cpp:306:10: note: First condition +/home/denali/Public/luis/application/sources/cloudsync/CloudSyncController.cpp:299:10: note: First condition if ( ! ok ) { ^ -/home/denali/Public/luis/application/sources/cloudsync/CloudSyncController.cpp:310:10: note: Second condition +/home/denali/Public/luis/application/sources/cloudsync/CloudSyncController.cpp:303:10: note: Second condition if ( ! ok ) { error = eError_OutFileExist; args = {{ _location }}; ok = false; goto lErr; } ^ -/home/denali/Public/luis/application/sources/cloudsync/CloudSyncController.cpp:557:13: style: Consider using std::accumulate algorithm instead of a raw loop. [useStlAlgorithm] +/home/denali/Public/luis/application/sources/cloudsync/CloudSyncController.cpp:550:13: style: Consider using std::accumulate algorithm instead of a raw loop. [useStlAlgorithm] buf += item.toString(); ^ -/home/denali/Public/luis/application/sources/cloudsync/CloudSyncController.cpp:339:27: style: Variable 'error' is assigned a value that is never used. [unreadVariable] +/home/denali/Public/luis/application/sources/cloudsync/CloudSyncController.cpp:332:27: style: Variable 'error' is assigned a value that is never used. [unreadVariable] Errors_Enum error = eError_Unknown; ^ -/home/denali/Public/luis/application/sources/cloudsync/CloudSyncController.cpp:657:27: style: Variable 'error' is assigned a value that is never used. [unreadVariable] +/home/denali/Public/luis/application/sources/cloudsync/CloudSyncController.cpp:650:27: style: Variable 'error' is assigned a value that is never used. [unreadVariable] Errors_Enum error = eError_Unknown; ^ -/home/denali/Public/luis/application/sources/cloudsync/CloudSyncController.cpp:712:27: style: Variable 'error' is assigned a value that is never used. [unreadVariable] +/home/denali/Public/luis/application/sources/cloudsync/CloudSyncController.cpp:705:27: style: Variable 'error' is assigned a value that is never used. [unreadVariable] Errors_Enum error = eError_Unknown; ^ -/home/denali/Public/luis/application/sources/cloudsync/CloudSyncController.cpp:721:51: style: Variable 'error' is assigned a value that is never used. [unreadVariable] +/home/denali/Public/luis/application/sources/cloudsync/CloudSyncController.cpp:714:51: style: Variable 'error' is assigned a value that is never used. [unreadVariable] if ( isDuplicate(messageID, data) ) { error = eError_Duplicate; args = { messageID }; ok = false; return ok; } // TODO: goto lErr; } don't log it just ignore and return false. ^ -/home/denali/Public/luis/application/sources/cloudsync/CloudSyncController.cpp:721:76: style: Variable 'args' is assigned a value that is never used. [unreadVariable] +/home/denali/Public/luis/application/sources/cloudsync/CloudSyncController.cpp:714:76: style: Variable 'args' is assigned a value that is never used. [unreadVariable] if ( isDuplicate(messageID, data) ) { error = eError_Duplicate; args = { messageID }; ok = false; return ok; } // TODO: goto lErr; } don't log it just ignore and return false. ^ -/home/denali/Public/luis/application/sources/cloudsync/CloudSyncController.cpp:743:27: style: Variable 'error' is assigned a value that is never used. [unreadVariable] +/home/denali/Public/luis/application/sources/cloudsync/CloudSyncController.cpp:736:27: style: Variable 'error' is assigned a value that is never used. [unreadVariable] Errors_Enum error = eError_Unknown; ^ -/home/denali/Public/luis/application/sources/cloudsync/CloudSyncController.cpp:807:27: style: Variable 'error' is assigned a value that is never used. [unreadVariable] +/home/denali/Public/luis/application/sources/cloudsync/CloudSyncController.cpp:800:27: style: Variable 'error' is assigned a value that is never used. [unreadVariable] Errors_Enum error = eError_Unknown; ^ -/home/denali/Public/luis/application/sources/cloudsync/CloudSyncController.cpp:844:27: style: Variable 'error' is assigned a value that is never used. [unreadVariable] +/home/denali/Public/luis/application/sources/cloudsync/CloudSyncController.cpp:837:27: style: Variable 'error' is assigned a value that is never used. [unreadVariable] Errors_Enum error = eError_Unknown; ^ -/home/denali/Public/luis/application/sources/cloudsync/CloudSyncController.cpp:891:27: style: Variable 'error' is assigned a value that is never used. [unreadVariable] +/home/denali/Public/luis/application/sources/cloudsync/CloudSyncController.cpp:884:27: style: Variable 'error' is assigned a value that is never used. [unreadVariable] Errors_Enum error = eError_Unknown; ^ -/home/denali/Public/luis/application/sources/cloudsync/CloudSyncController.cpp:1007:27: style: Variable 'error' is assigned a value that is never used. [unreadVariable] +/home/denali/Public/luis/application/sources/cloudsync/CloudSyncController.cpp:1000:27: style: Variable 'error' is assigned a value that is never used. [unreadVariable] Errors_Enum error = eError_Unknown; ^ -/home/denali/Public/luis/application/sources/cloudsync/CloudSyncController.cpp:1032:27: style: Variable 'error' is assigned a value that is never used. [unreadVariable] +/home/denali/Public/luis/application/sources/cloudsync/CloudSyncController.cpp:1025:27: style: Variable 'error' is assigned a value that is never used. [unreadVariable] Errors_Enum error = eError_Unknown; ^ -/home/denali/Public/luis/application/sources/device/DeviceController.cpp:801:18: style: Condition 'uploadOldestFirst' is always true [knownConditionTrueFalse] +/home/denali/Public/luis/application/sources/device/DeviceController.cpp:786:18: style: Condition 'uploadOldestFirst' is always true [knownConditionTrueFalse] if ( uploadOldestFirst ) { ^ -/home/denali/Public/luis/application/sources/device/DeviceController.cpp:797:34: note: Assignment 'uploadOldestFirst=true', assigned value is 1 +/home/denali/Public/luis/application/sources/device/DeviceController.cpp:782:34: note: Assignment 'uploadOldestFirst=true', assigned value is 1 bool uploadOldestFirst = true; //TODO: make if configurable(cfg, or cli) ^ -/home/denali/Public/luis/application/sources/device/DeviceController.cpp:801:18: note: Condition 'uploadOldestFirst' is always true +/home/denali/Public/luis/application/sources/device/DeviceController.cpp:786:18: note: Condition 'uploadOldestFirst' is always true if ( uploadOldestFirst ) { ^ -/home/denali/Public/luis/application/sources/device/DeviceController.cpp:686:8: style: Variable 'ok' is reassigned a value before the old one has been used. [redundantAssignment] +/home/denali/Public/luis/application/sources/device/DeviceController.cpp:671:8: style: Variable 'ok' is reassigned a value before the old one has been used. [redundantAssignment] ok = QFile::rename(fileSrc, fileDest); ^ -/home/denali/Public/luis/application/sources/device/DeviceController.cpp:684:12: note: ok is assigned +/home/denali/Public/luis/application/sources/device/DeviceController.cpp:669:12: note: ok is assigned ok = FileHandler::backupFile(vFileName); ^ -/home/denali/Public/luis/application/sources/device/DeviceController.cpp:686:8: note: ok is overwritten +/home/denali/Public/luis/application/sources/device/DeviceController.cpp:671:8: note: ok is overwritten ok = QFile::rename(fileSrc, fileDest); ^ -/home/denali/Public/luis/application/sources/device/DeviceController.cpp:568:41: style: Variable 'err' is assigned a value that is never used. [unreadVariable] +/home/denali/Public/luis/application/sources/device/DeviceController.cpp:553:41: style: Variable 'err' is assigned a value that is never used. [unreadVariable] DeviceError::Scripts_Error_Enum err = DeviceError::eDevice_OK; ^ -/home/denali/Public/luis/application/sources/device/DeviceController.cpp:745:21: style: Variable 'data.mCommand' is assigned a value that is never used. [unreadVariable] +/home/denali/Public/luis/application/sources/device/DeviceController.cpp:730:21: style: Variable 'data.mCommand' is assigned a value that is never used. [unreadVariable] data.mCommand = "mount"; ^ -/home/denali/Public/luis/application/sources/device/DeviceController.cpp:747:21: style: Variable 'data.mPassword' is assigned a value that is never used. [unreadVariable] +/home/denali/Public/luis/application/sources/device/DeviceController.cpp:732:21: style: Variable 'data.mPassword' is assigned a value that is never used. [unreadVariable] data.mPassword = encryption::configurationsPassword( ok ); ^ /home/denali/Public/luis/application/sources/device/DeviceModels.cpp:282:10: style: Condition '!ok' is always false [knownConditionTrueFalse] @@ -204,7 +204,7 @@ /home/denali/Public/luis/application/sources/model/dg/adjustment/settings/MDuetRoWaterDG.h:123:5: warning: Member variable 'MDuetRoWaterModeDGr::_data' is not initialized in the constructor. [uninitMemberVar] MDuetRoWaterModeDGr () { } ^ -/home/denali/Public/luis/application/sources/model/dg/data/MDGAccelerometerData.h:103:5: warning: Member variable 'MDGAccelerometer::_data' is not initialized in the constructor. [uninitMemberVar] +/home/denali/Public/luis/application/sources/model/dg/data/MDGAccelerometerData.h:99:5: warning: Member variable 'MDGAccelerometer::_data' is not initialized in the constructor. [uninitMemberVar] MDGAccelerometer () { } ^ /home/denali/Public/luis/application/sources/model/dg/data/MDGConductivityData.h:108:5: warning: Member variable 'MDGConductivityData::_data' is not initialized in the constructor. [uninitMemberVar] @@ -360,15 +360,12 @@ /home/denali/Public/luis/application/sources/model/hd/adjustment/treatment/MTreatmentAdjustUltrafiltrationStateResponse.h:78:5: warning: Member variable 'MAdjustUltrafiltrationStateResponse::_data' is not initialized in the constructor. [uninitMemberVar] MAdjustUltrafiltrationStateResponse() { } ^ -/home/denali/Public/luis/application/sources/model/hd/alarm/MAlarmActiveList.h:133:5: warning: Member variable 'MAlarmActiveListResponse::_data' is not initialized in the constructor. [uninitMemberVar] +/home/denali/Public/luis/application/sources/model/hd/alarm/MAlarmActiveList.h:130:5: warning: Member variable 'MAlarmActiveListResponse::_data' is not initialized in the constructor. [uninitMemberVar] MAlarmActiveListResponse () { } ^ /home/denali/Public/luis/application/sources/model/hd/alarm/MAlarmCleared.h:72:5: warning: Member variable 'MAlarmCleared::_data' is not initialized in the constructor. [uninitMemberVar] MAlarmCleared () { } ^ -/home/denali/Public/luis/application/sources/model/hd/alarm/MAlarmClearedCondition.h:73:5: warning: Member variable 'MAlarmClearedCondition::_data' is not initialized in the constructor. [uninitMemberVar] - MAlarmClearedCondition () { } - ^ /home/denali/Public/luis/application/sources/model/hd/alarm/MAlarmStatusData.h:86:5: warning: Member variable 'MAlarmStatus::_data' is not initialized in the constructor. [uninitMemberVar] MAlarmStatus() { } ^ @@ -384,7 +381,7 @@ /home/denali/Public/luis/application/sources/model/hd/alarm/MAlarmTriggered.h:65:18: note: Function in derived class QVariantList parameters() const; ^ -/home/denali/Public/luis/application/sources/model/hd/data/MHDAccelerometerData.h:103:5: warning: Member variable 'MHDAccelerometer::_data' is not initialized in the constructor. [uninitMemberVar] +/home/denali/Public/luis/application/sources/model/hd/data/MHDAccelerometerData.h:99:5: warning: Member variable 'MHDAccelerometer::_data' is not initialized in the constructor. [uninitMemberVar] MHDAccelerometer () { } ^ /home/denali/Public/luis/application/sources/model/hd/data/MHDAirBubbleData.h:77:5: warning: Member variable 'MHDAirBubbleData::_data' is not initialized in the constructor. [uninitMemberVar] @@ -486,25 +483,25 @@ /home/denali/Public/luis/application/sources/model/settings/MSettings.cpp:91:0: style: Consider using std::find_if algorithm instead of a raw loop. [useStlAlgorithm] if ( vKey == keyValue.key() ) return keyValue.val(); ^ -/home/denali/Public/luis/application/sources/storage/Logger.cpp:242:9: style: Condition 'vUseTempPath' is always false [knownConditionTrueFalse] +/home/denali/Public/luis/application/sources/storage/Logger.cpp:233:9: style: Condition 'vUseTempPath' is always false [knownConditionTrueFalse] if (vUseTempPath) { ^ -/home/denali/Public/luis/application/sources/storage/Logger.cpp:239:20: note: Assignment 'vUseTempPath=false', assigned value is 0 +/home/denali/Public/luis/application/sources/storage/Logger.cpp:230:20: note: Assignment 'vUseTempPath=false', assigned value is 0 vUseTempPath = false; ^ -/home/denali/Public/luis/application/sources/storage/Logger.cpp:242:9: note: Condition 'vUseTempPath' is always false +/home/denali/Public/luis/application/sources/storage/Logger.cpp:233:9: note: Condition 'vUseTempPath' is always false if (vUseTempPath) { ^ -/home/denali/Public/luis/application/sources/storage/Logger.cpp:262:10: style: Condition 'ok' is always true [knownConditionTrueFalse] +/home/denali/Public/luis/application/sources/storage/Logger.cpp:253:10: style: Condition 'ok' is always true [knownConditionTrueFalse] if ( ok && ! setLogPath(LogType::eLogAppED) ) ok = false; ^ -/home/denali/Public/luis/application/sources/storage/Logger.cpp:261:15: note: Assignment 'ok=true', assigned value is 1 +/home/denali/Public/luis/application/sources/storage/Logger.cpp:252:15: note: Assignment 'ok=true', assigned value is 1 bool ok = true; ^ -/home/denali/Public/luis/application/sources/storage/Logger.cpp:262:10: note: Condition 'ok' is always true +/home/denali/Public/luis/application/sources/storage/Logger.cpp:253:10: note: Condition 'ok' is always true if ( ok && ! setLogPath(LogType::eLogAppED) ) ok = false; ^ -/home/denali/Public/luis/application/sources/storage/Logger.cpp:200:17: style: The scope of the variable 'notified' can be reduced. Warning: Be careful when fixing this message, especially when there are inner loops. Here is an example where cppcheck will write that the scope for 'i' can be reduced: +/home/denali/Public/luis/application/sources/storage/Logger.cpp:191:17: style: The scope of the variable 'notified' can be reduced. Warning: Be careful when fixing this message, especially when there are inner loops. Here is an example where cppcheck will write that the scope for 'i' can be reduced: void f(int x) { int i = 0; @@ -567,9 +564,6 @@ /home/denali/Public/luis/application/sources/view/VTreatmentCreate.cpp:84:0: style: The function 'doCancel' is never used. [unusedFunction] ^ -/home/denali/Public/luis/application/sources/view/hd/alarm/VAlarmStatus.cpp:95:0: style: The function 'doClearCondition' is never used. [unusedFunction] - -^ /home/denali/Public/luis/application/sources/view/VTreatmentCreate.cpp:73:0: style: The function 'doConfirm' is never used. [unusedFunction] ^ @@ -609,16 +603,16 @@ /home/denali/Public/luis/application/sources/view/hd/adjustment/disinfect/VDisinfectAdjustDisinfect.cpp:147:0: style: The function 'doDisinfectROPermeate' is never used. [unusedFunction] ^ -/home/denali/Public/luis/application/sources/gui/GuiView.cpp:258:0: style: The function 'doExportListInsert' is never used. [unusedFunction] +/home/denali/Public/luis/application/sources/gui/GuiView.cpp:239:0: style: The function 'doExportListInsert' is never used. [unusedFunction] ^ -/home/denali/Public/luis/application/sources/gui/GuiView.cpp:301:0: style: The function 'doExportListPercent' is never used. [unusedFunction] +/home/denali/Public/luis/application/sources/gui/GuiView.cpp:282:0: style: The function 'doExportListPercent' is never used. [unusedFunction] ^ -/home/denali/Public/luis/application/sources/gui/GuiView.cpp:289:0: style: The function 'doExportListSelect' is never used. [unusedFunction] +/home/denali/Public/luis/application/sources/gui/GuiView.cpp:270:0: style: The function 'doExportListSelect' is never used. [unusedFunction] ^ -/home/denali/Public/luis/application/sources/gui/GuiView.cpp:421:0: style: The function 'doGenerateQRImage' is never used. [unusedFunction] +/home/denali/Public/luis/application/sources/gui/GuiView.cpp:402:0: style: The function 'doGenerateQRImage' is never used. [unusedFunction] ^ /home/denali/Public/luis/application/sources/view/VTreatmentCreate(legacy).cpp:539:0: style: The function 'doGetOperatingParameterValues' is never used. [unusedFunction] @@ -657,7 +651,7 @@ /home/denali/Public/luis/application/sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentInitTreatment.cpp:49:0: style: The function 'doInitiate' is never used. [unusedFunction] ^ -/home/denali/Public/luis/application/sources/view/VEventSpy.cpp:149:0: style: The function 'doMouseReset' is never used. [unusedFunction] +/home/denali/Public/luis/application/sources/view/VEventSpy.cpp:142:0: style: The function 'doMouseReset' is never used. [unusedFunction] ^ /home/denali/Public/luis/application/sources/view/hd/adjustment/posttreatment/VPostTreatmentAdjustPatientDisconnectionConfirm.cpp:35:0: style: The function 'doNotify' is never used. [unusedFunction] @@ -693,7 +687,7 @@ /home/denali/Public/luis/application/sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentWaterSample.cpp:51:0: style: The function 'doSample' is never used. [unusedFunction] ^ -/home/denali/Public/luis/application/sources/view/hd/alarm/VAlarmStatus.cpp:78:0: style: The function 'doSilence' is never used. [unusedFunction] +/home/denali/Public/luis/application/sources/view/hd/alarm/VAlarmStatus.cpp:75:0: style: The function 'doSilence' is never used. [unusedFunction] ^ /home/denali/Public/luis/application/sources/view/hd/adjustment/common/VCommonAdjustmentVitals.cpp:87:0: style: The function 'doSkip' is never used. [unusedFunction] @@ -702,22 +696,22 @@ /home/denali/Public/luis/application/sources/view/hd/adjustment/treatment/VTreatmentAdjustmentSaline.cpp:58:0: style: The function 'doStop' is never used. [unusedFunction] ^ -/home/denali/Public/luis/application/sources/view/VEventSpy.cpp:192:0: style: The function 'doTouchReset' is never used. [unusedFunction] +/home/denali/Public/luis/application/sources/view/VEventSpy.cpp:181:0: style: The function 'doTouchReset' is never used. [unusedFunction] ^ /home/denali/Public/luis/application/sources/view/hd/adjustment/treatment/VTreatmentAdjustmentRecirculate.cpp:75:0: style: The function 'doTreatmentEnd' is never used. [unusedFunction] ^ -/home/denali/Public/luis/application/sources/view/hd/alarm/VAlarmStatus.cpp:57:0: style: The function 'doUserActionEnd' is never used. [unusedFunction] +/home/denali/Public/luis/application/sources/view/hd/alarm/VAlarmStatus.cpp:54:0: style: The function 'doUserActionEnd' is never used. [unusedFunction] ^ -/home/denali/Public/luis/application/sources/view/hd/alarm/VAlarmStatus.cpp:67:0: style: The function 'doUserActionOk' is never used. [unusedFunction] +/home/denali/Public/luis/application/sources/view/hd/alarm/VAlarmStatus.cpp:64:0: style: The function 'doUserActionOk' is never used. [unusedFunction] ^ -/home/denali/Public/luis/application/sources/view/hd/alarm/VAlarmStatus.cpp:37:0: style: The function 'doUserActionResume' is never used. [unusedFunction] +/home/denali/Public/luis/application/sources/view/hd/alarm/VAlarmStatus.cpp:34:0: style: The function 'doUserActionResume' is never used. [unusedFunction] ^ -/home/denali/Public/luis/application/sources/view/hd/alarm/VAlarmStatus.cpp:47:0: style: The function 'doUserActionRinseback' is never used. [unusedFunction] +/home/denali/Public/luis/application/sources/view/hd/alarm/VAlarmStatus.cpp:44:0: style: The function 'doUserActionRinseback' is never used. [unusedFunction] ^ /home/denali/Public/luis/application/sources/view/VTreatmentCreate.cpp:42:0: style: The function 'doValidation' is never used. [unusedFunction] @@ -735,10 +729,10 @@ /home/denali/Public/luis/application/sources/utility/qrcodegen.cpp:362:0: style: The function 'getVersion' is never used. [unusedFunction] ^ -/home/denali/Public/luis/application/sources/view/hd/alarm/VAlarmStatus.cpp:205:0: style: The function 'instructionKeys' is never used. [unusedFunction] +/home/denali/Public/luis/application/sources/view/hd/alarm/VAlarmStatus.cpp:183:0: style: The function 'instructionKeys' is never used. [unusedFunction] ^ -/home/denali/Public/luis/application/sources/view/hd/alarm/VAlarmStatus.cpp:206:0: style: The function 'instructionValues' is never used. [unusedFunction] +/home/denali/Public/luis/application/sources/view/hd/alarm/VAlarmStatus.cpp:184:0: style: The function 'instructionValues' is never used. [unusedFunction] ^ /home/denali/Public/luis/application/sources/view/settings/VSettings.cpp:237:0: style: The function 'isPasswordValid' is never used. [unusedFunction] @@ -753,13 +747,13 @@ /home/denali/Public/luis/application/sources/utility/qrcodegen.cpp:143:0: style: The function 'makeEci' is never used. [unusedFunction] ^ -/home/denali/Public/luis/application/sources/bluetooth/BluetoothInterface.cpp:1209:0: style: The function 'mimic' is never used. [unusedFunction] +/home/denali/Public/luis/application/sources/bluetooth/BluetoothInterface.cpp:1201:0: style: The function 'mimic' is never used. [unusedFunction] ^ /home/denali/Public/luis/application/sources/utility/encryption.cpp:48:0: style: The function 'mkfsExt4' is never used. [unusedFunction] ^ -/home/denali/Public/luis/application/sources/storage/FileHandler.cpp:162:0: style: The function 'moveFolder' is never used. [unusedFunction] +/home/denali/Public/luis/application/sources/storage/FileHandler.cpp:155:0: style: The function 'moveFolder' is never used. [unusedFunction] ^ /home/denali/Public/luis/application/sources/device/DeviceController.cpp:41:0: style: The function 'processUSBMountComplete' is never used. [unusedFunction] @@ -771,40 +765,40 @@ /home/denali/Public/luis/application/sources/device/DeviceController.cpp:41:0: style: The function 'processUSBMountReadyOut' is never used. [unusedFunction] ^ -/home/denali/Public/luis/application/sources/storage/FileHandler.cpp:203:0: style: The function 'removeFiles' is never used. [unusedFunction] +/home/denali/Public/luis/application/sources/storage/FileHandler.cpp:190:0: style: The function 'removeFiles' is never used. [unusedFunction] ^ -/home/denali/Public/luis/application/sources/bluetooth/BluetoothInterface.cpp:1289:0: style: The function 'requestBattery' is never used. [unusedFunction] +/home/denali/Public/luis/application/sources/bluetooth/BluetoothInterface.cpp:1281:0: style: The function 'requestBattery' is never used. [unusedFunction] ^ -/home/denali/Public/luis/application/sources/bluetooth/BluetoothInterface.cpp:1276:0: style: The function 'requestInformation' is never used. [unusedFunction] +/home/denali/Public/luis/application/sources/bluetooth/BluetoothInterface.cpp:1268:0: style: The function 'requestInformation' is never used. [unusedFunction] ^ -/home/denali/Public/luis/application/sources/bluetooth/BluetoothInterface.cpp:1257:0: style: The function 'requestMeasurements' is never used. [unusedFunction] +/home/denali/Public/luis/application/sources/bluetooth/BluetoothInterface.cpp:1249:0: style: The function 'requestMeasurements' is never used. [unusedFunction] ^ /home/denali/Public/luis/application/sources/view/settings/VBluetooth.cpp:79:0: style: The function 'roleNames' is never used. [unusedFunction] ^ -/home/denali/Public/luis/application/sources/device/DeviceController.cpp:282:0: style: The function 'sdcardSpaceCheck' is never used. [unusedFunction] +/home/denali/Public/luis/application/sources/device/DeviceController.cpp:276:0: style: The function 'sdcardSpaceCheck' is never used. [unusedFunction] ^ -/home/denali/Public/luis/application/sources/device/DeviceController.cpp:383:0: style: The function 'settingsPartitionSpaceCheck' is never used. [unusedFunction] +/home/denali/Public/luis/application/sources/device/DeviceController.cpp:377:0: style: The function 'settingsPartitionSpaceCheck' is never used. [unusedFunction] ^ /home/denali/Public/luis/application/sources/model/settings/MSettings.cpp:146:0: style: The function 'systemLanguage' is never used. [unusedFunction] ^ -/home/denali/Public/luis/application/sources/MainTimer.cpp:137:0: style: The function 'timerEvent' is never used. [unusedFunction] +/home/denali/Public/luis/application/sources/MainTimer.cpp:131:0: style: The function 'timerEvent' is never used. [unusedFunction] ^ -/home/denali/Public/luis/application/sources/storage/FileHandler.cpp:295:0: style: The function 'tmpUsable' is never used. [unusedFunction] +/home/denali/Public/luis/application/sources/storage/FileHandler.cpp:280:0: style: The function 'tmpUsable' is never used. [unusedFunction] ^ /home/denali/Public/luis/application/sources/view/settings/VSettings.cpp:303:0: style: The function 'updateServicePassword' is never used. [unusedFunction] ^ -/home/denali/Public/luis/application/sources/device/DeviceController.cpp:259:0: style: The function 'usbCheck' is never used. [unusedFunction] +/home/denali/Public/luis/application/sources/device/DeviceController.cpp:253:0: style: The function 'usbCheck' is never used. [unusedFunction] ^ nofile:0:0: information: Cppcheck cannot find all the include files. Cppcheck can check the code without the include files found. But the results will probably be more accurate if all the include files are found. Please check your project's include directories and add all of them as include directories for Cppcheck. To see what files Cppcheck cannot find use --check-config. [missingInclude] Index: etc/reports/cppcheck/cppcheck.log =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- etc/reports/cppcheck/cppcheck.log (.../cppcheck.log) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ etc/reports/cppcheck/cppcheck.log (.../cppcheck.log) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -1,4 +1,4 @@ -04/21/2025 17:38 +04/25/2025 20:19 Behrouz NematiPour (information) Couldn't find path given by -I '/home/denali/Public/luis/application/sources/wifi/' Checking /home/denali/Public/luis/application/main.cpp ... @@ -7,1516 +7,1509 @@ Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/main.cpp: Q_PROPERTY=1;Q_ENUM=1... -1/217 files checked 2% done +1/216 files checked 2% done Checking /home/denali/Public/luis/application/sources/AlarmGenerator.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/AlarmGenerator.cpp: Q_PROPERTY=1;Q_ENUM=1... -2/217 files checked 2% done +2/216 files checked 2% done Checking /home/denali/Public/luis/application/sources/ApplicationController.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/ApplicationController.cpp: Q_PROPERTY=1;Q_ENUM=1... -3/217 files checked 5% done +3/216 files checked 5% done Checking /home/denali/Public/luis/application/sources/ApplicationPost.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/ApplicationPost.cpp: Q_PROPERTY=1;Q_ENUM=1... -4/217 files checked 6% done +4/216 files checked 6% done Checking /home/denali/Public/luis/application/sources/MainTimer.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/MainTimer.cpp: Q_PROPERTY=1;Q_ENUM=1... -5/217 files checked 6% done +5/216 files checked 6% done Checking /home/denali/Public/luis/application/sources/Threads.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/Threads.cpp: Q_PROPERTY=1;Q_ENUM=1... -6/217 files checked 6% done +6/216 files checked 6% done Checking /home/denali/Public/luis/application/sources/bluetooth/BluetoothInterface.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/bluetooth/BluetoothInterface.cpp: Q_PROPERTY=1;Q_ENUM=1... -7/217 files checked 12% done +7/216 files checked 12% done Checking /home/denali/Public/luis/application/sources/canbus/CanInterface.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/canbus/CanInterface.cpp: Q_PROPERTY=1;Q_ENUM=1... -8/217 files checked 13% done +8/216 files checked 13% done Checking /home/denali/Public/luis/application/sources/canbus/FrameInterface.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/canbus/FrameInterface.cpp: Q_PROPERTY=1;Q_ENUM=1... -9/217 files checked 14% done +9/216 files checked 14% done Checking /home/denali/Public/luis/application/sources/canbus/MessageAcknowModel.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/canbus/MessageAcknowModel.cpp: Q_PROPERTY=1;Q_ENUM=1... -10/217 files checked 15% done +10/216 files checked 14% done Checking /home/denali/Public/luis/application/sources/canbus/MessageBuilder.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/canbus/MessageBuilder.cpp: Q_PROPERTY=1;Q_ENUM=1... -11/217 files checked 16% done +11/216 files checked 16% done Checking /home/denali/Public/luis/application/sources/canbus/MessageDispatcher.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/canbus/MessageDispatcher.cpp: Q_PROPERTY=1;Q_ENUM=1... -12/217 files checked 20% done +12/216 files checked 19% done Checking /home/denali/Public/luis/application/sources/canbus/MessageInterpreter.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/canbus/MessageInterpreter.cpp: Q_PROPERTY=1;Q_ENUM=1... -13/217 files checked 25% done +13/216 files checked 24% done Checking /home/denali/Public/luis/application/sources/cloudsync/CloudSyncController.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/cloudsync/CloudSyncController.cpp: Q_PROPERTY=1;Q_ENUM=1... -14/217 files checked 30% done +14/216 files checked 29% done Checking /home/denali/Public/luis/application/sources/device/DeviceController.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/device/DeviceController.cpp: Q_PROPERTY=1;Q_ENUM=1... -15/217 files checked 33% done +15/216 files checked 33% done Checking /home/denali/Public/luis/application/sources/device/DeviceError.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/device/DeviceError.cpp: Q_PROPERTY=1;Q_ENUM=1... -16/217 files checked 34% done +16/216 files checked 33% done Checking /home/denali/Public/luis/application/sources/device/DeviceModels.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/device/DeviceModels.cpp: Q_PROPERTY=1;Q_ENUM=1... -17/217 files checked 35% done +17/216 files checked 35% done Checking /home/denali/Public/luis/application/sources/device/DeviceView.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/device/DeviceView.cpp: Q_PROPERTY=1;Q_ENUM=1... -18/217 files checked 36% done +18/216 files checked 36% done Checking /home/denali/Public/luis/application/sources/gui/GuiController.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/gui/GuiController.cpp: Q_PROPERTY=1;Q_ENUM=1... -19/217 files checked 38% done +19/216 files checked 37% done Checking /home/denali/Public/luis/application/sources/gui/GuiGlobals.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/gui/GuiGlobals.cpp: Q_PROPERTY=1;Q_ENUM=1... -20/217 files checked 38% done +20/216 files checked 38% done Checking /home/denali/Public/luis/application/sources/gui/GuiView.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/gui/GuiView.cpp: Q_PROPERTY=1;Q_ENUM=1... -21/217 files checked 40% done +21/216 files checked 39% done Checking /home/denali/Public/luis/application/sources/model/MAbstract.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/MAbstract.cpp: Q_PROPERTY=1;Q_ENUM=1... -22/217 files checked 40% done +22/216 files checked 39% done Checking /home/denali/Public/luis/application/sources/model/MAbstractDynamic.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/MAbstractDynamic.cpp: Q_PROPERTY=1;Q_ENUM=1... -23/217 files checked 40% done +23/216 files checked 40% done Checking /home/denali/Public/luis/application/sources/model/confirm/MDuetConfirmHDi.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/confirm/MDuetConfirmHDi.cpp: Q_PROPERTY=1;Q_ENUM=1... -24/217 files checked 40% done +24/216 files checked 40% done Checking /home/denali/Public/luis/application/sources/model/dg/adjustment/settings/MAdjustDGCleaningUsageResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/dg/adjustment/settings/MAdjustDGCleaningUsageResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -25/217 files checked 41% done +25/216 files checked 40% done Checking /home/denali/Public/luis/application/sources/model/dg/adjustment/settings/MAdjustDGDateTimeResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/dg/adjustment/settings/MAdjustDGDateTimeResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -26/217 files checked 41% done +26/216 files checked 40% done Checking /home/denali/Public/luis/application/sources/model/dg/adjustment/settings/MAdjustDGSerialNumberResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/dg/adjustment/settings/MAdjustDGSerialNumberResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -27/217 files checked 41% done +27/216 files checked 41% done Checking /home/denali/Public/luis/application/sources/model/dg/adjustment/settings/MAdjustDGServiceDatesResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/dg/adjustment/settings/MAdjustDGServiceDatesResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -28/217 files checked 41% done +28/216 files checked 41% done Checking /home/denali/Public/luis/application/sources/model/dg/adjustment/settings/MAdjustDGVersionsResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/dg/adjustment/settings/MAdjustDGVersionsResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -29/217 files checked 41% done +29/216 files checked 41% done Checking /home/denali/Public/luis/application/sources/model/dg/adjustment/settings/MDuetRoWaterDG.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/dg/adjustment/settings/MDuetRoWaterDG.cpp: Q_PROPERTY=1;Q_ENUM=1... -30/217 files checked 42% done +30/216 files checked 41% done Checking /home/denali/Public/luis/application/sources/model/dg/data/MDGAccelerometerData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/dg/data/MDGAccelerometerData.cpp: Q_PROPERTY=1;Q_ENUM=1... -31/217 files checked 42% done +31/216 files checked 41% done Checking /home/denali/Public/luis/application/sources/model/dg/data/MDGConductivityData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/dg/data/MDGConductivityData.cpp: Q_PROPERTY=1;Q_ENUM=1... -32/217 files checked 42% done +32/216 files checked 42% done Checking /home/denali/Public/luis/application/sources/model/dg/data/MDGDebugText.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/dg/data/MDGDebugText.cpp: Q_PROPERTY=1;Q_ENUM=1... -33/217 files checked 42% done +33/216 files checked 42% done Checking /home/denali/Public/luis/application/sources/model/dg/data/MDGDrainPumpData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/dg/data/MDGDrainPumpData.cpp: Q_PROPERTY=1;Q_ENUM=1... -34/217 files checked 42% done +34/216 files checked 42% done Checking /home/denali/Public/luis/application/sources/model/dg/data/MDGGeneralEvent.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/dg/data/MDGGeneralEvent.cpp: Q_PROPERTY=1;Q_ENUM=1... -35/217 files checked 42% done +35/216 files checked 42% done Checking /home/denali/Public/luis/application/sources/model/dg/data/MDGHeatersData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/dg/data/MDGHeatersData.cpp: Q_PROPERTY=1;Q_ENUM=1... -36/217 files checked 43% done +36/216 files checked 42% done Checking /home/denali/Public/luis/application/sources/model/dg/data/MDGLoadCellReadingsData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/dg/data/MDGLoadCellReadingsData.cpp: Q_PROPERTY=1;Q_ENUM=1... -37/217 files checked 43% done +37/216 files checked 43% done Checking /home/denali/Public/luis/application/sources/model/dg/data/MDGOperationModeData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/dg/data/MDGOperationModeData.cpp: Q_PROPERTY=1;Q_ENUM=1... -38/217 files checked 43% done +38/216 files checked 43% done Checking /home/denali/Public/luis/application/sources/model/dg/data/MDGPressuresData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/dg/data/MDGPressuresData.cpp: Q_PROPERTY=1;Q_ENUM=1... -39/217 files checked 43% done +39/216 files checked 43% done Checking /home/denali/Public/luis/application/sources/model/dg/data/MDGROPumpData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/dg/data/MDGROPumpData.cpp: Q_PROPERTY=1;Q_ENUM=1... -40/217 files checked 43% done +40/216 files checked 43% done Checking /home/denali/Public/luis/application/sources/model/dg/data/MDGReservoirData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/dg/data/MDGReservoirData.cpp: Q_PROPERTY=1;Q_ENUM=1... -41/217 files checked 44% done +41/216 files checked 43% done Checking /home/denali/Public/luis/application/sources/model/dg/data/MDGTemperaturesData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/dg/data/MDGTemperaturesData.cpp: Q_PROPERTY=1;Q_ENUM=1... -42/217 files checked 44% done +42/216 files checked 44% done Checking /home/denali/Public/luis/application/sources/model/dg/data/MDGValvesStatesData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/dg/data/MDGValvesStatesData.cpp: Q_PROPERTY=1;Q_ENUM=1... -43/217 files checked 45% done +43/216 files checked 44% done Checking /home/denali/Public/luis/application/sources/model/dg/data/post/MDGPostFinalResultData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/dg/data/post/MDGPostFinalResultData.cpp: Q_PROPERTY=1;Q_ENUM=1... -44/217 files checked 45% done +44/216 files checked 44% done Checking /home/denali/Public/luis/application/sources/model/dg/data/post/MDGPostSingleResultData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/dg/data/post/MDGPostSingleResultData.cpp: Q_PROPERTY=1;Q_ENUM=1... -45/217 files checked 45% done +45/216 files checked 44% done Checking /home/denali/Public/luis/application/sources/model/dg/data/pretreatment/MDGFilterFlushData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/dg/data/pretreatment/MDGFilterFlushData.cpp: Q_PROPERTY=1;Q_ENUM=1... -46/217 files checked 45% done +46/216 files checked 45% done Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/MAdjustPowerOff.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/MAdjustPowerOff.cpp: Q_PROPERTY=1;Q_ENUM=1... -47/217 files checked 45% done +47/216 files checked 45% done Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/disinfect/MDisinfectAdjustModeResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/disinfect/MDisinfectAdjustModeResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -48/217 files checked 45% done +48/216 files checked 45% done Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/disinfect/MDisinfectAdjustStartResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/disinfect/MDisinfectAdjustStartResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -49/217 files checked 45% done +49/216 files checked 45% done Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/posttreatment/MPostTreatmentAdjustDisposablesRemovalConfirmResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/posttreatment/MPostTreatmentAdjustDisposablesRemovalConfirmResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -50/217 files checked 45% done +50/216 files checked 45% done Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/posttreatment/MPostTreatmentAdjustPatientDisconnectionConfirmResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/posttreatment/MPostTreatmentAdjustPatientDisconnectionConfirmResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -51/217 files checked 45% done +51/216 files checked 45% done Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/posttreatment/MPostTreatmentAdjustTreatmentLogResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/posttreatment/MPostTreatmentAdjustTreatmentLogResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -52/217 files checked 47% done +52/216 files checked 46% done Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustDisposablesConfirmResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustDisposablesConfirmResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -53/217 files checked 47% done +53/216 files checked 46% done Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustDisposablesPrimeResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustDisposablesPrimeResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -54/217 files checked 47% done +54/216 files checked 46% done Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustInitTreatmentResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustInitTreatmentResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -55/217 files checked 47% done +55/216 files checked 47% done Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustParametersValidationResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustParametersValidationResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -56/217 files checked 47% done +56/216 files checked 47% done Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustPatientConnectionBeginResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustPatientConnectionBeginResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -57/217 files checked 47% done +57/216 files checked 47% done Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustPatientConnectionConfirmResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustPatientConnectionConfirmResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -58/217 files checked 48% done +58/216 files checked 47% done Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustStartTreatmentResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustStartTreatmentResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -59/217 files checked 48% done +59/216 files checked 47% done Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustUltrafiltrationInitResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustUltrafiltrationInitResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -60/217 files checked 48% done +60/216 files checked 48% done Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustWaterSampleResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustWaterSampleResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -61/217 files checked 48% done +61/216 files checked 48% done Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/settings/MAdjustHDAlarmVolumeResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/settings/MAdjustHDAlarmVolumeResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -62/217 files checked 48% done +62/216 files checked 48% done Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/settings/MAdjustHDDateTimeResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/settings/MAdjustHDDateTimeResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -63/217 files checked 48% done +63/216 files checked 48% done Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/settings/MAdjustHDInstitutionalRecordResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/settings/MAdjustHDInstitutionalRecordResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -64/217 files checked 49% done +64/216 files checked 49% done Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/settings/MAdjustHDSerialNumberResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/settings/MAdjustHDSerialNumberResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -65/217 files checked 49% done +65/216 files checked 49% done Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/settings/MAdjustHDServiceDatesResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/settings/MAdjustHDServiceDatesResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -66/217 files checked 49% done +66/216 files checked 49% done Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/settings/MAdjustHDServiceModeResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/settings/MAdjustHDServiceModeResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -67/217 files checked 49% done +67/216 files checked 49% done Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/settings/MAdjustHDVersionsRequest.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/settings/MAdjustHDVersionsRequest.cpp: Q_PROPERTY=1;Q_ENUM=1... -68/217 files checked 49% done +68/216 files checked 49% done Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/settings/MAdjustHDVersionsResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/settings/MAdjustHDVersionsResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -69/217 files checked 50% done +69/216 files checked 49% done Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/treatment/MTreatmentAdjustBloodDialysateResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/treatment/MTreatmentAdjustBloodDialysateResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -70/217 files checked 50% done +70/216 files checked 49% done Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/treatment/MTreatmentAdjustDurationResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/treatment/MTreatmentAdjustDurationResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -71/217 files checked 50% done +71/216 files checked 50% done Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/treatment/MTreatmentAdjustEndResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/treatment/MTreatmentAdjustEndResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -72/217 files checked 50% done +72/216 files checked 50% done Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/treatment/MTreatmentAdjustHeparinResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/treatment/MTreatmentAdjustHeparinResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -73/217 files checked 50% done +73/216 files checked 50% done Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/treatment/MTreatmentAdjustPressuresLimitsResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/treatment/MTreatmentAdjustPressuresLimitsResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -74/217 files checked 50% done +74/216 files checked 50% done Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/treatment/MTreatmentAdjustRecirculateResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/treatment/MTreatmentAdjustRecirculateResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -75/217 files checked 50% done +75/216 files checked 50% done Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/treatment/MTreatmentAdjustRinsebackResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/treatment/MTreatmentAdjustRinsebackResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -76/217 files checked 51% done +76/216 files checked 50% done Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/treatment/MTreatmentAdjustSalineResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/treatment/MTreatmentAdjustSalineResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -77/217 files checked 51% done +77/216 files checked 50% done Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/treatment/MTreatmentAdjustUltrafiltrationConfirmResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/treatment/MTreatmentAdjustUltrafiltrationConfirmResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -78/217 files checked 51% done +78/216 files checked 51% done Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/treatment/MTreatmentAdjustUltrafiltrationEditResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/treatment/MTreatmentAdjustUltrafiltrationEditResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -79/217 files checked 51% done +79/216 files checked 51% done Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/treatment/MTreatmentAdjustUltrafiltrationStateResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/adjustment/treatment/MTreatmentAdjustUltrafiltrationStateResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -80/217 files checked 51% done +80/216 files checked 51% done Checking /home/denali/Public/luis/application/sources/model/hd/alarm/MAlarmActiveList.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/alarm/MAlarmActiveList.cpp: Q_PROPERTY=1;Q_ENUM=1... -81/217 files checked 52% done +81/216 files checked 51% done Checking /home/denali/Public/luis/application/sources/model/hd/alarm/MAlarmCleared.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/alarm/MAlarmCleared.cpp: Q_PROPERTY=1;Q_ENUM=1... -82/217 files checked 52% done -Checking /home/denali/Public/luis/application/sources/model/hd/alarm/MAlarmClearedCondition.cpp ... -Defines:Q_PROPERTY=1;Q_ENUM=1 -Undefines: -Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ -Platform:Native -Checking /home/denali/Public/luis/application/sources/model/hd/alarm/MAlarmClearedCondition.cpp: Q_PROPERTY=1;Q_ENUM=1... -83/217 files checked 52% done +82/216 files checked 51% done Checking /home/denali/Public/luis/application/sources/model/hd/alarm/MAlarmMapping.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/alarm/MAlarmMapping.cpp: Q_PROPERTY=1;Q_ENUM=1... -84/217 files checked 55% done +83/216 files checked 54% done Checking /home/denali/Public/luis/application/sources/model/hd/alarm/MAlarmStatusData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/alarm/MAlarmStatusData.cpp: Q_PROPERTY=1;Q_ENUM=1... -85/217 files checked 55% done +84/216 files checked 55% done Checking /home/denali/Public/luis/application/sources/model/hd/alarm/MAlarmTriggered.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/alarm/MAlarmTriggered.cpp: Q_PROPERTY=1;Q_ENUM=1... -86/217 files checked 55% done +85/216 files checked 55% done Checking /home/denali/Public/luis/application/sources/model/hd/data/MHDAccelerometerData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/data/MHDAccelerometerData.cpp: Q_PROPERTY=1;Q_ENUM=1... -87/217 files checked 55% done +86/216 files checked 55% done Checking /home/denali/Public/luis/application/sources/model/hd/data/MHDAirBubbleData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/data/MHDAirBubbleData.cpp: Q_PROPERTY=1;Q_ENUM=1... -88/217 files checked 55% done +87/216 files checked 55% done Checking /home/denali/Public/luis/application/sources/model/hd/data/MHDAirTrapData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/data/MHDAirTrapData.cpp: Q_PROPERTY=1;Q_ENUM=1... -89/217 files checked 56% done +88/216 files checked 55% done Checking /home/denali/Public/luis/application/sources/model/hd/data/MHDBloodLeakData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/data/MHDBloodLeakData.cpp: Q_PROPERTY=1;Q_ENUM=1... -90/217 files checked 56% done +89/216 files checked 56% done Checking /home/denali/Public/luis/application/sources/model/hd/data/MHDDebugText.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/data/MHDDebugText.cpp: Q_PROPERTY=1;Q_ENUM=1... -91/217 files checked 56% done +90/216 files checked 56% done Checking /home/denali/Public/luis/application/sources/model/hd/data/MHDGeneralEvent.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/data/MHDGeneralEvent.cpp: Q_PROPERTY=1;Q_ENUM=1... -92/217 files checked 56% done +91/216 files checked 56% done Checking /home/denali/Public/luis/application/sources/model/hd/data/MHDOperationModeData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/data/MHDOperationModeData.cpp: Q_PROPERTY=1;Q_ENUM=1... -93/217 files checked 56% done +92/216 files checked 56% done Checking /home/denali/Public/luis/application/sources/model/hd/data/MHDSyringePumpData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/data/MHDSyringePumpData.cpp: Q_PROPERTY=1;Q_ENUM=1... -94/217 files checked 56% done +93/216 files checked 56% done Checking /home/denali/Public/luis/application/sources/model/hd/data/MHDUsageInfoResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/data/MHDUsageInfoResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -95/217 files checked 57% done +94/216 files checked 56% done Checking /home/denali/Public/luis/application/sources/model/hd/data/MTreatmentRangesData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/data/MTreatmentRangesData.cpp: Q_PROPERTY=1;Q_ENUM=1... -96/217 files checked 57% done +95/216 files checked 57% done Checking /home/denali/Public/luis/application/sources/model/hd/data/post/MHDPostFinalResultData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/data/post/MHDPostFinalResultData.cpp: Q_PROPERTY=1;Q_ENUM=1... -97/217 files checked 57% done +96/216 files checked 57% done Checking /home/denali/Public/luis/application/sources/model/hd/data/post/MHDPostSingleResultData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/data/post/MHDPostSingleResultData.cpp: Q_PROPERTY=1;Q_ENUM=1... -98/217 files checked 57% done +97/216 files checked 57% done Checking /home/denali/Public/luis/application/sources/model/hd/data/post/MHDRTCEpochData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/data/post/MHDRTCEpochData.cpp: Q_PROPERTY=1;Q_ENUM=1... -99/217 files checked 57% done +98/216 files checked 57% done Checking /home/denali/Public/luis/application/sources/model/hd/data/post/MUIPostFinalResultHDRequest.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/data/post/MUIPostFinalResultHDRequest.cpp: Q_PROPERTY=1;Q_ENUM=1... -100/217 files checked 57% done +99/216 files checked 57% done Checking /home/denali/Public/luis/application/sources/model/hd/data/posttreatment/MPostTreatmentStatesData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/data/posttreatment/MPostTreatmentStatesData.cpp: Q_PROPERTY=1;Q_ENUM=1... -101/217 files checked 57% done +100/216 files checked 57% done Checking /home/denali/Public/luis/application/sources/model/hd/data/pretreatment/MPreTreatmentDisposablesPrimeData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/data/pretreatment/MPreTreatmentDisposablesPrimeData.cpp: Q_PROPERTY=1;Q_ENUM=1... -102/217 files checked 57% done +101/216 files checked 57% done Checking /home/denali/Public/luis/application/sources/model/hd/data/pretreatment/MPreTreatmentSelfTestDryData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/data/pretreatment/MPreTreatmentSelfTestDryData.cpp: Q_PROPERTY=1;Q_ENUM=1... -103/217 files checked 58% done +102/216 files checked 57% done Checking /home/denali/Public/luis/application/sources/model/hd/data/pretreatment/MPreTreatmentSelfTestNoCartridgeData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/data/pretreatment/MPreTreatmentSelfTestNoCartridgeData.cpp: Q_PROPERTY=1;Q_ENUM=1... -104/217 files checked 58% done +103/216 files checked 57% done Checking /home/denali/Public/luis/application/sources/model/hd/data/pretreatment/MPreTreatmentStatesData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/data/pretreatment/MPreTreatmentStatesData.cpp: Q_PROPERTY=1;Q_ENUM=1... -105/217 files checked 58% done +104/216 files checked 58% done Checking /home/denali/Public/luis/application/sources/model/hd/data/treatment/MTreatmentBloodFlowData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/data/treatment/MTreatmentBloodFlowData.cpp: Q_PROPERTY=1;Q_ENUM=1... -106/217 files checked 58% done +105/216 files checked 58% done Checking /home/denali/Public/luis/application/sources/model/hd/data/treatment/MTreatmentBloodPrimeData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/data/treatment/MTreatmentBloodPrimeData.cpp: Q_PROPERTY=1;Q_ENUM=1... -107/217 files checked 58% done +106/216 files checked 58% done Checking /home/denali/Public/luis/application/sources/model/hd/data/treatment/MTreatmentDialysateFlowData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/data/treatment/MTreatmentDialysateFlowData.cpp: Q_PROPERTY=1;Q_ENUM=1... -108/217 files checked 59% done +107/216 files checked 58% done Checking /home/denali/Public/luis/application/sources/model/hd/data/treatment/MTreatmentHeparinData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/data/treatment/MTreatmentHeparinData.cpp: Q_PROPERTY=1;Q_ENUM=1... -109/217 files checked 59% done +108/216 files checked 58% done Checking /home/denali/Public/luis/application/sources/model/hd/data/treatment/MTreatmentOutletFlowData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/data/treatment/MTreatmentOutletFlowData.cpp: Q_PROPERTY=1;Q_ENUM=1... -110/217 files checked 59% done +109/216 files checked 59% done Checking /home/denali/Public/luis/application/sources/model/hd/data/treatment/MTreatmentPressureOcclusionData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/data/treatment/MTreatmentPressureOcclusionData.cpp: Q_PROPERTY=1;Q_ENUM=1... -111/217 files checked 59% done +110/216 files checked 59% done Checking /home/denali/Public/luis/application/sources/model/hd/data/treatment/MTreatmentRecirculateData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/data/treatment/MTreatmentRecirculateData.cpp: Q_PROPERTY=1;Q_ENUM=1... -112/217 files checked 59% done +111/216 files checked 59% done Checking /home/denali/Public/luis/application/sources/model/hd/data/treatment/MTreatmentRinsebackData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/data/treatment/MTreatmentRinsebackData.cpp: Q_PROPERTY=1;Q_ENUM=1... -113/217 files checked 60% done +112/216 files checked 59% done Checking /home/denali/Public/luis/application/sources/model/hd/data/treatment/MTreatmentSalineData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/data/treatment/MTreatmentSalineData.cpp: Q_PROPERTY=1;Q_ENUM=1... -114/217 files checked 60% done +113/216 files checked 59% done Checking /home/denali/Public/luis/application/sources/model/hd/data/treatment/MTreatmentStatesData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/data/treatment/MTreatmentStatesData.cpp: Q_PROPERTY=1;Q_ENUM=1... -115/217 files checked 60% done +114/216 files checked 60% done Checking /home/denali/Public/luis/application/sources/model/hd/data/treatment/MTreatmentStopData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/data/treatment/MTreatmentStopData.cpp: Q_PROPERTY=1;Q_ENUM=1... -116/217 files checked 60% done +115/216 files checked 60% done Checking /home/denali/Public/luis/application/sources/model/hd/data/treatment/MTreatmentTimeData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/data/treatment/MTreatmentTimeData.cpp: Q_PROPERTY=1;Q_ENUM=1... -117/217 files checked 60% done +116/216 files checked 60% done Checking /home/denali/Public/luis/application/sources/model/hd/data/treatmentlog/MTreatmentLogAlarmData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/data/treatmentlog/MTreatmentLogAlarmData.cpp: Q_PROPERTY=1;Q_ENUM=1... -118/217 files checked 60% done +117/216 files checked 60% done Checking /home/denali/Public/luis/application/sources/model/hd/data/treatmentlog/MTreatmentLogAvrgeData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/data/treatmentlog/MTreatmentLogAvrgeData.cpp: Q_PROPERTY=1;Q_ENUM=1... -119/217 files checked 60% done +118/216 files checked 60% done Checking /home/denali/Public/luis/application/sources/model/hd/data/treatmentlog/MTreatmentLogEventData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/hd/data/treatmentlog/MTreatmentLogEventData.cpp: Q_PROPERTY=1;Q_ENUM=1... -120/217 files checked 61% done +119/216 files checked 60% done Checking /home/denali/Public/luis/application/sources/model/settings/MBluetooth.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/settings/MBluetooth.cpp: Q_PROPERTY=1;Q_ENUM=1... -121/217 files checked 61% done +120/216 files checked 61% done Checking /home/denali/Public/luis/application/sources/model/settings/MSettings.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/settings/MSettings.cpp: Q_PROPERTY=1;Q_ENUM=1... -122/217 files checked 61% done +121/216 files checked 61% done Checking /home/denali/Public/luis/application/sources/model/ui/data/MUIBloodPressureData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/model/ui/data/MUIBloodPressureData.cpp: Q_PROPERTY=1;Q_ENUM=1... -123/217 files checked 62% done +122/216 files checked 61% done Checking /home/denali/Public/luis/application/sources/storage/FileHandler.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/storage/FileHandler.cpp: Q_PROPERTY=1;Q_ENUM=1... -124/217 files checked 63% done +123/216 files checked 63% done Checking /home/denali/Public/luis/application/sources/storage/Logger.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/storage/Logger.cpp: Q_PROPERTY=1;Q_ENUM=1... -125/217 files checked 66% done +124/216 files checked 65% done Checking /home/denali/Public/luis/application/sources/storage/Settings.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/storage/Settings.cpp: Q_PROPERTY=1;Q_ENUM=1... -126/217 files checked 67% done +125/216 files checked 66% done Checking /home/denali/Public/luis/application/sources/storage/StorageGlobals.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/storage/StorageGlobals.cpp: Q_PROPERTY=1;Q_ENUM=1... -127/217 files checked 68% done +126/216 files checked 67% done Checking /home/denali/Public/luis/application/sources/storage/TreatmentLog.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/storage/TreatmentLog.cpp: Q_PROPERTY=1;Q_ENUM=1... -128/217 files checked 70% done +127/216 files checked 70% done Checking /home/denali/Public/luis/application/sources/utility/crc.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/utility/crc.cpp: Q_PROPERTY=1;Q_ENUM=1... -129/217 files checked 70% done +128/216 files checked 70% done Checking /home/denali/Public/luis/application/sources/utility/encryption.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/utility/encryption.cpp: Q_PROPERTY=1;Q_ENUM=1... -130/217 files checked 71% done +129/216 files checked 70% done Checking /home/denali/Public/luis/application/sources/utility/format.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/utility/format.cpp: Q_PROPERTY=1;Q_ENUM=1... -131/217 files checked 71% done +130/216 files checked 71% done Checking /home/denali/Public/luis/application/sources/utility/qrcodegen.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/utility/qrcodegen.cpp: Q_PROPERTY=1;Q_ENUM=1... -132/217 files checked 74% done +131/216 files checked 73% done Checking /home/denali/Public/luis/application/sources/utility/types.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/utility/types.cpp: Q_PROPERTY=1;Q_ENUM=1... -133/217 files checked 74% done +132/216 files checked 74% done Checking /home/denali/Public/luis/application/sources/view/VAdjustmentResponseBase.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/VAdjustmentResponseBase.cpp: Q_PROPERTY=1;Q_ENUM=1... -134/217 files checked 74% done +133/216 files checked 74% done Checking /home/denali/Public/luis/application/sources/view/VEventSpy.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/VEventSpy.cpp: Q_PROPERTY=1;Q_ENUM=1... -135/217 files checked 75% done +134/216 files checked 75% done Checking /home/denali/Public/luis/application/sources/view/VGeneralEvent.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/VGeneralEvent.cpp: Q_PROPERTY=1;Q_ENUM=1... -136/217 files checked 75% done +135/216 files checked 75% done Checking /home/denali/Public/luis/application/sources/view/VTreatmentCreate(legacy).cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/VTreatmentCreate(legacy).cpp: Q_PROPERTY=1;Q_ENUM=1... -137/217 files checked 78% done +136/216 files checked 77% done Checking /home/denali/Public/luis/application/sources/view/VTreatmentCreate.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/VTreatmentCreate.cpp: Q_PROPERTY=1;Q_ENUM=1... -138/217 files checked 79% done +137/216 files checked 78% done Checking /home/denali/Public/luis/application/sources/view/confirm/VConfirm.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/confirm/VConfirm.cpp: Q_PROPERTY=1;Q_ENUM=1... -139/217 files checked 79% done +138/216 files checked 79% done Checking /home/denali/Public/luis/application/sources/view/dg/data/VDGAccelerometerData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/dg/data/VDGAccelerometerData.cpp: Q_PROPERTY=1;Q_ENUM=1... -140/217 files checked 79% done +139/216 files checked 79% done Checking /home/denali/Public/luis/application/sources/view/dg/data/VDGConductivityData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/dg/data/VDGConductivityData.cpp: Q_PROPERTY=1;Q_ENUM=1... -141/217 files checked 79% done +140/216 files checked 79% done Checking /home/denali/Public/luis/application/sources/view/dg/data/VDGDrainPumpData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/dg/data/VDGDrainPumpData.cpp: Q_PROPERTY=1;Q_ENUM=1... -142/217 files checked 80% done +141/216 files checked 79% done Checking /home/denali/Public/luis/application/sources/view/dg/data/VDGHeatersData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/dg/data/VDGHeatersData.cpp: Q_PROPERTY=1;Q_ENUM=1... -143/217 files checked 80% done +142/216 files checked 79% done Checking /home/denali/Public/luis/application/sources/view/dg/data/VDGLoadCellReadingsData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/dg/data/VDGLoadCellReadingsData.cpp: Q_PROPERTY=1;Q_ENUM=1... -144/217 files checked 80% done +143/216 files checked 80% done Checking /home/denali/Public/luis/application/sources/view/dg/data/VDGOperationModeData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/dg/data/VDGOperationModeData.cpp: Q_PROPERTY=1;Q_ENUM=1... -145/217 files checked 80% done +144/216 files checked 80% done Checking /home/denali/Public/luis/application/sources/view/dg/data/VDGPressuresData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/dg/data/VDGPressuresData.cpp: Q_PROPERTY=1;Q_ENUM=1... -146/217 files checked 80% done +145/216 files checked 80% done Checking /home/denali/Public/luis/application/sources/view/dg/data/VDGROPumpData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/dg/data/VDGROPumpData.cpp: Q_PROPERTY=1;Q_ENUM=1... -147/217 files checked 80% done +146/216 files checked 80% done Checking /home/denali/Public/luis/application/sources/view/dg/data/VDGReservoirData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/dg/data/VDGReservoirData.cpp: Q_PROPERTY=1;Q_ENUM=1... -148/217 files checked 80% done +147/216 files checked 80% done Checking /home/denali/Public/luis/application/sources/view/dg/data/VDGTemperaturesData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/dg/data/VDGTemperaturesData.cpp: Q_PROPERTY=1;Q_ENUM=1... -149/217 files checked 80% done +148/216 files checked 80% done Checking /home/denali/Public/luis/application/sources/view/dg/data/VDGValvesStatesData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/dg/data/VDGValvesStatesData.cpp: Q_PROPERTY=1;Q_ENUM=1... -150/217 files checked 80% done +149/216 files checked 80% done Checking /home/denali/Public/luis/application/sources/view/dg/data/post/VDGPOSTData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/dg/data/post/VDGPOSTData.cpp: Q_PROPERTY=1;Q_ENUM=1... -151/217 files checked 81% done +150/216 files checked 80% done Checking /home/denali/Public/luis/application/sources/view/dg/data/pretreatment/VDGFilterFlushData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/dg/data/pretreatment/VDGFilterFlushData.cpp: Q_PROPERTY=1;Q_ENUM=1... -152/217 files checked 81% done +151/216 files checked 80% done Checking /home/denali/Public/luis/application/sources/view/hd/adjustment/common/VCommonAdjustmentVitals.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/hd/adjustment/common/VCommonAdjustmentVitals.cpp: Q_PROPERTY=1;Q_ENUM=1... -153/217 files checked 81% done +152/216 files checked 81% done Checking /home/denali/Public/luis/application/sources/view/hd/adjustment/disinfect/VDisinfectAdjustDisinfect.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/hd/adjustment/disinfect/VDisinfectAdjustDisinfect.cpp: Q_PROPERTY=1;Q_ENUM=1... -154/217 files checked 82% done +153/216 files checked 82% done Checking /home/denali/Public/luis/application/sources/view/hd/adjustment/posttreatment/VPostTreatmentAdjustDisposablesRemovalConfirm.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/hd/adjustment/posttreatment/VPostTreatmentAdjustDisposablesRemovalConfirm.cpp: Q_PROPERTY=1;Q_ENUM=1... -155/217 files checked 82% done +154/216 files checked 82% done Checking /home/denali/Public/luis/application/sources/view/hd/adjustment/posttreatment/VPostTreatmentAdjustPatientDisconnectionConfirm.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/hd/adjustment/posttreatment/VPostTreatmentAdjustPatientDisconnectionConfirm.cpp: Q_PROPERTY=1;Q_ENUM=1... -156/217 files checked 82% done +155/216 files checked 82% done Checking /home/denali/Public/luis/application/sources/view/hd/adjustment/posttreatment/VPostTreatmentAdjustTreatmentLog.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/hd/adjustment/posttreatment/VPostTreatmentAdjustTreatmentLog.cpp: Q_PROPERTY=1;Q_ENUM=1... -157/217 files checked 83% done +156/216 files checked 83% done Checking /home/denali/Public/luis/application/sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentConsumablesConfirm.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentConsumablesConfirm.cpp: Q_PROPERTY=1;Q_ENUM=1... -158/217 files checked 83% done +157/216 files checked 83% done Checking /home/denali/Public/luis/application/sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentDisposablesConfirm.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentDisposablesConfirm.cpp: Q_PROPERTY=1;Q_ENUM=1... -159/217 files checked 83% done +158/216 files checked 83% done Checking /home/denali/Public/luis/application/sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentDisposablesPrime.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentDisposablesPrime.cpp: Q_PROPERTY=1;Q_ENUM=1... -160/217 files checked 83% done +159/216 files checked 83% done Checking /home/denali/Public/luis/application/sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentInitTreatment.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentInitTreatment.cpp: Q_PROPERTY=1;Q_ENUM=1... -161/217 files checked 84% done +160/216 files checked 83% done Checking /home/denali/Public/luis/application/sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentPatientConnectionBegin.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentPatientConnectionBegin.cpp: Q_PROPERTY=1;Q_ENUM=1... -162/217 files checked 84% done +161/216 files checked 84% done Checking /home/denali/Public/luis/application/sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentPatientConnectionConfirm.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentPatientConnectionConfirm.cpp: Q_PROPERTY=1;Q_ENUM=1... -163/217 files checked 84% done +162/216 files checked 84% done Checking /home/denali/Public/luis/application/sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentStartTreatment.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentStartTreatment.cpp: Q_PROPERTY=1;Q_ENUM=1... -164/217 files checked 84% done +163/216 files checked 84% done Checking /home/denali/Public/luis/application/sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentUltrafiltrationInit.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentUltrafiltrationInit.cpp: Q_PROPERTY=1;Q_ENUM=1... -165/217 files checked 84% done +164/216 files checked 84% done Checking /home/denali/Public/luis/application/sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentWaterSample.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentWaterSample.cpp: Q_PROPERTY=1;Q_ENUM=1... -166/217 files checked 84% done +165/216 files checked 84% done Checking /home/denali/Public/luis/application/sources/view/hd/adjustment/treatment/VTreatmentAdjustmentDuration.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/hd/adjustment/treatment/VTreatmentAdjustmentDuration.cpp: Q_PROPERTY=1;Q_ENUM=1... -167/217 files checked 85% done +166/216 files checked 84% done Checking /home/denali/Public/luis/application/sources/view/hd/adjustment/treatment/VTreatmentAdjustmentEnd.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/hd/adjustment/treatment/VTreatmentAdjustmentEnd.cpp: Q_PROPERTY=1;Q_ENUM=1... -168/217 files checked 85% done +167/216 files checked 85% done Checking /home/denali/Public/luis/application/sources/view/hd/adjustment/treatment/VTreatmentAdjustmentFlows.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/hd/adjustment/treatment/VTreatmentAdjustmentFlows.cpp: Q_PROPERTY=1;Q_ENUM=1... -169/217 files checked 85% done +168/216 files checked 85% done Checking /home/denali/Public/luis/application/sources/view/hd/adjustment/treatment/VTreatmentAdjustmentHeparin.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/hd/adjustment/treatment/VTreatmentAdjustmentHeparin.cpp: Q_PROPERTY=1;Q_ENUM=1... -170/217 files checked 85% done +169/216 files checked 85% done Checking /home/denali/Public/luis/application/sources/view/hd/adjustment/treatment/VTreatmentAdjustmentPressuresLimits.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/hd/adjustment/treatment/VTreatmentAdjustmentPressuresLimits.cpp: Q_PROPERTY=1;Q_ENUM=1... -171/217 files checked 85% done +170/216 files checked 85% done Checking /home/denali/Public/luis/application/sources/view/hd/adjustment/treatment/VTreatmentAdjustmentRecirculate.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/hd/adjustment/treatment/VTreatmentAdjustmentRecirculate.cpp: Q_PROPERTY=1;Q_ENUM=1... -172/217 files checked 85% done +171/216 files checked 85% done Checking /home/denali/Public/luis/application/sources/view/hd/adjustment/treatment/VTreatmentAdjustmentRinseback.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/hd/adjustment/treatment/VTreatmentAdjustmentRinseback.cpp: Q_PROPERTY=1;Q_ENUM=1... -173/217 files checked 86% done +172/216 files checked 85% done Checking /home/denali/Public/luis/application/sources/view/hd/adjustment/treatment/VTreatmentAdjustmentSaline.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/hd/adjustment/treatment/VTreatmentAdjustmentSaline.cpp: Q_PROPERTY=1;Q_ENUM=1... -174/217 files checked 86% done +173/216 files checked 86% done Checking /home/denali/Public/luis/application/sources/view/hd/adjustment/treatment/VTreatmentAdjustmentUltrafiltrationConfirm.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/hd/adjustment/treatment/VTreatmentAdjustmentUltrafiltrationConfirm.cpp: Q_PROPERTY=1;Q_ENUM=1... -175/217 files checked 86% done +174/216 files checked 86% done Checking /home/denali/Public/luis/application/sources/view/hd/adjustment/treatment/VTreatmentAdjustmentUltrafiltrationEdit.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/hd/adjustment/treatment/VTreatmentAdjustmentUltrafiltrationEdit.cpp: Q_PROPERTY=1;Q_ENUM=1... -176/217 files checked 86% done +175/216 files checked 86% done Checking /home/denali/Public/luis/application/sources/view/hd/adjustment/treatment/VTreatmentAdjustmentUltrafiltrationState.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/hd/adjustment/treatment/VTreatmentAdjustmentUltrafiltrationState.cpp: Q_PROPERTY=1;Q_ENUM=1... -177/217 files checked 86% done +176/216 files checked 86% done Checking /home/denali/Public/luis/application/sources/view/hd/alarm/VAlarmActiveList.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/hd/alarm/VAlarmActiveList.cpp: Q_PROPERTY=1;Q_ENUM=1... -178/217 files checked 87% done +177/216 files checked 87% done Checking /home/denali/Public/luis/application/sources/view/hd/alarm/VAlarmStatus.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/hd/alarm/VAlarmStatus.cpp: Q_PROPERTY=1;Q_ENUM=1... -179/217 files checked 88% done +178/216 files checked 88% done Checking /home/denali/Public/luis/application/sources/view/hd/data/VHDAccelerometerData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/hd/data/VHDAccelerometerData.cpp: Q_PROPERTY=1;Q_ENUM=1... -180/217 files checked 88% done +179/216 files checked 88% done Checking /home/denali/Public/luis/application/sources/view/hd/data/VHDAirBubbleData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/hd/data/VHDAirBubbleData.cpp: Q_PROPERTY=1;Q_ENUM=1... -181/217 files checked 88% done +180/216 files checked 88% done Checking /home/denali/Public/luis/application/sources/view/hd/data/VHDAirTrapData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/hd/data/VHDAirTrapData.cpp: Q_PROPERTY=1;Q_ENUM=1... -182/217 files checked 88% done +181/216 files checked 88% done Checking /home/denali/Public/luis/application/sources/view/hd/data/VHDBloodLeakData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/hd/data/VHDBloodLeakData.cpp: Q_PROPERTY=1;Q_ENUM=1... -183/217 files checked 88% done +182/216 files checked 88% done Checking /home/denali/Public/luis/application/sources/view/hd/data/VHDOperationModeData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/hd/data/VHDOperationModeData.cpp: Q_PROPERTY=1;Q_ENUM=1... -184/217 files checked 88% done +183/216 files checked 88% done Checking /home/denali/Public/luis/application/sources/view/hd/data/VHDSyringePumpData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/hd/data/VHDSyringePumpData.cpp: Q_PROPERTY=1;Q_ENUM=1... -185/217 files checked 89% done +184/216 files checked 88% done Checking /home/denali/Public/luis/application/sources/view/hd/data/VTreatmentRanges.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/hd/data/VTreatmentRanges.cpp: Q_PROPERTY=1;Q_ENUM=1... -186/217 files checked 90% done +185/216 files checked 90% done Checking /home/denali/Public/luis/application/sources/view/hd/data/post/VHDPOSTData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/hd/data/post/VHDPOSTData.cpp: Q_PROPERTY=1;Q_ENUM=1... -187/217 files checked 90% done +186/216 files checked 90% done Checking /home/denali/Public/luis/application/sources/view/hd/data/posttreatment/VPostTreatmentStatesData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/hd/data/posttreatment/VPostTreatmentStatesData.cpp: Q_PROPERTY=1;Q_ENUM=1... -188/217 files checked 90% done +187/216 files checked 90% done Checking /home/denali/Public/luis/application/sources/view/hd/data/pretreatment/VPreTreatmentDisposablesPrimeData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/hd/data/pretreatment/VPreTreatmentDisposablesPrimeData.cpp: Q_PROPERTY=1;Q_ENUM=1... -189/217 files checked 90% done +188/216 files checked 90% done Checking /home/denali/Public/luis/application/sources/view/hd/data/pretreatment/VPreTreatmentSelfTestDryData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/hd/data/pretreatment/VPreTreatmentSelfTestDryData.cpp: Q_PROPERTY=1;Q_ENUM=1... -190/217 files checked 90% done +189/216 files checked 90% done Checking /home/denali/Public/luis/application/sources/view/hd/data/pretreatment/VPreTreatmentSelfTestNoCartridgeData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/hd/data/pretreatment/VPreTreatmentSelfTestNoCartridgeData.cpp: Q_PROPERTY=1;Q_ENUM=1... -191/217 files checked 90% done +190/216 files checked 90% done Checking /home/denali/Public/luis/application/sources/view/hd/data/pretreatment/VPreTreatmentStatesData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/hd/data/pretreatment/VPreTreatmentStatesData.cpp: Q_PROPERTY=1;Q_ENUM=1... -192/217 files checked 92% done +191/216 files checked 91% done Checking /home/denali/Public/luis/application/sources/view/hd/data/treatment/VHDTreatmentStatesData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/hd/data/treatment/VHDTreatmentStatesData.cpp: Q_PROPERTY=1;Q_ENUM=1... -193/217 files checked 93% done +192/216 files checked 93% done Checking /home/denali/Public/luis/application/sources/view/hd/data/treatment/VTreatmentBloodFlow.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/hd/data/treatment/VTreatmentBloodFlow.cpp: Q_PROPERTY=1;Q_ENUM=1... -194/217 files checked 93% done +193/216 files checked 93% done Checking /home/denali/Public/luis/application/sources/view/hd/data/treatment/VTreatmentBloodPrimeData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/hd/data/treatment/VTreatmentBloodPrimeData.cpp: Q_PROPERTY=1;Q_ENUM=1... -195/217 files checked 93% done +194/216 files checked 93% done Checking /home/denali/Public/luis/application/sources/view/hd/data/treatment/VTreatmentDialysateFlow.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/hd/data/treatment/VTreatmentDialysateFlow.cpp: Q_PROPERTY=1;Q_ENUM=1... -196/217 files checked 93% done +195/216 files checked 93% done Checking /home/denali/Public/luis/application/sources/view/hd/data/treatment/VTreatmentHeparinData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/hd/data/treatment/VTreatmentHeparinData.cpp: Q_PROPERTY=1;Q_ENUM=1... -197/217 files checked 93% done +196/216 files checked 93% done Checking /home/denali/Public/luis/application/sources/view/hd/data/treatment/VTreatmentPressureOcclusion.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/hd/data/treatment/VTreatmentPressureOcclusion.cpp: Q_PROPERTY=1;Q_ENUM=1... -198/217 files checked 93% done +197/216 files checked 93% done Checking /home/denali/Public/luis/application/sources/view/hd/data/treatment/VTreatmentRecirculateData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/hd/data/treatment/VTreatmentRecirculateData.cpp: Q_PROPERTY=1;Q_ENUM=1... -199/217 files checked 94% done +198/216 files checked 93% done Checking /home/denali/Public/luis/application/sources/view/hd/data/treatment/VTreatmentRinsebackData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/hd/data/treatment/VTreatmentRinsebackData.cpp: Q_PROPERTY=1;Q_ENUM=1... -200/217 files checked 94% done +199/216 files checked 94% done Checking /home/denali/Public/luis/application/sources/view/hd/data/treatment/VTreatmentSalineData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/hd/data/treatment/VTreatmentSalineData.cpp: Q_PROPERTY=1;Q_ENUM=1... -201/217 files checked 94% done +200/216 files checked 94% done Checking /home/denali/Public/luis/application/sources/view/hd/data/treatment/VTreatmentStopData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/hd/data/treatment/VTreatmentStopData.cpp: Q_PROPERTY=1;Q_ENUM=1... -202/217 files checked 94% done +201/216 files checked 94% done Checking /home/denali/Public/luis/application/sources/view/hd/data/treatment/VTreatmentTime.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/hd/data/treatment/VTreatmentTime.cpp: Q_PROPERTY=1;Q_ENUM=1... -203/217 files checked 94% done +202/216 files checked 94% done Checking /home/denali/Public/luis/application/sources/view/hd/data/treatment/VTreatmentUltrafiltration.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/hd/data/treatment/VTreatmentUltrafiltration.cpp: Q_PROPERTY=1;Q_ENUM=1... -204/217 files checked 94% done +203/216 files checked 94% done Checking /home/denali/Public/luis/application/sources/view/settings/VAdjustmentAlarmVolume.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/settings/VAdjustmentAlarmVolume.cpp: Q_PROPERTY=1;Q_ENUM=1... -205/217 files checked 94% done +204/216 files checked 94% done Checking /home/denali/Public/luis/application/sources/view/settings/VAdjustmentDGCleaningUsage.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/settings/VAdjustmentDGCleaningUsage.cpp: Q_PROPERTY=1;Q_ENUM=1... -206/217 files checked 95% done +205/216 files checked 94% done Checking /home/denali/Public/luis/application/sources/view/settings/VAdjustmentInstitutionalRecord.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/settings/VAdjustmentInstitutionalRecord.cpp: Q_PROPERTY=1;Q_ENUM=1... -207/217 files checked 95% done +206/216 files checked 95% done Checking /home/denali/Public/luis/application/sources/view/settings/VAdjustmentServiceDates.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/settings/VAdjustmentServiceDates.cpp: Q_PROPERTY=1;Q_ENUM=1... -208/217 files checked 95% done +207/216 files checked 95% done Checking /home/denali/Public/luis/application/sources/view/settings/VAdjustmentServiceMode.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/settings/VAdjustmentServiceMode.cpp: Q_PROPERTY=1;Q_ENUM=1... -209/217 files checked 95% done +208/216 files checked 95% done Checking /home/denali/Public/luis/application/sources/view/settings/VAdjustmentVersions.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/settings/VAdjustmentVersions.cpp: Q_PROPERTY=1;Q_ENUM=1... -210/217 files checked 96% done +209/216 files checked 96% done Checking /home/denali/Public/luis/application/sources/view/settings/VBluetooth.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/settings/VBluetooth.cpp: Q_PROPERTY=1;Q_ENUM=1... -211/217 files checked 97% done +210/216 files checked 97% done Checking /home/denali/Public/luis/application/sources/view/settings/VCloudSync.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/settings/VCloudSync.cpp: Q_PROPERTY=1;Q_ENUM=1... -212/217 files checked 97% done +211/216 files checked 97% done Checking /home/denali/Public/luis/application/sources/view/settings/VDateTime.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/settings/VDateTime.cpp: Q_PROPERTY=1;Q_ENUM=1... -213/217 files checked 98% done +212/216 files checked 98% done Checking /home/denali/Public/luis/application/sources/view/settings/VDuetRoWaterDG.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/settings/VDuetRoWaterDG.cpp: Q_PROPERTY=1;Q_ENUM=1... -214/217 files checked 98% done +213/216 files checked 98% done Checking /home/denali/Public/luis/application/sources/view/settings/VHDUsageInfo.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/settings/VHDUsageInfo.cpp: Q_PROPERTY=1;Q_ENUM=1... -215/217 files checked 98% done +214/216 files checked 98% done Checking /home/denali/Public/luis/application/sources/view/settings/VLocalization.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/settings/VLocalization.cpp: Q_PROPERTY=1;Q_ENUM=1... -216/217 files checked 98% done +215/216 files checked 98% done Checking /home/denali/Public/luis/application/sources/view/settings/VSettings.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I/home/denali/Public/luis/application/sources/ -I/home/denali/Public/luis/application/sources/bluetooth/ -I/home/denali/Public/luis/application/sources/canbus/ -I/home/denali/Public/luis/application/sources/cloudsync/ -I/home/denali/Public/luis/application/sources/device/ -I/home/denali/Public/luis/application/sources/gui/ -I/home/denali/Public/luis/application/sources/model/ -I/home/denali/Public/luis/application/sources/storage/ -I/home/denali/Public/luis/application/sources/utility/ -I/home/denali/Public/luis/application/sources/view/ Platform:Native Checking /home/denali/Public/luis/application/sources/view/settings/VSettings.cpp: Q_PROPERTY=1;Q_ENUM=1... -217/217 files checked 100% done +216/216 files checked 100% done Index: leahi.pro =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- leahi.pro (.../leahi.pro) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ leahi.pro (.../leahi.pro) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -158,7 +158,6 @@ sources/model/hd/alarm/MAlarmStatusData.h \ sources/model/hd/alarm/MAlarmTriggered.h \ sources/model/hd/alarm/MAlarmCleared.h \ - sources/model/hd/alarm/MAlarmClearedCondition.h \ sources/model/hd/alarm/MAlarmActiveList.h \ \ # ---------- Models - States Data sources/model/hd/data/MHDOperationModeData.h \ @@ -435,7 +434,6 @@ sources/model/hd/alarm/MAlarmMapping.cpp \ sources/model/hd/alarm/MAlarmTriggered.cpp \ sources/model/hd/alarm/MAlarmCleared.cpp \ - sources/model/hd/alarm/MAlarmClearedCondition.cpp \ sources/model/hd/alarm/MAlarmActiveList.cpp \ \ # ---------- Models - Data - States sources/model/hd/data/MHDOperationModeData.cpp \ Index: leahi.pro.user =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- leahi.pro.user (.../leahi.pro.user) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ leahi.pro.user (.../leahi.pro.user) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -1,6 +1,6 @@ - + EnvironmentId @@ -13,8 +13,8 @@ ProjectExplorer.Project.EditorSettings + true true - false true Cpp @@ -109,30 +109,34 @@ true + Cocoplugin.BuildStep + + + true "" "" %{ActiveProject:ProjectDirectory}/imake.sh %{sourceDir} ProjectExplorer.ProcessStep - + true QtProjectManager.QMakeBuildStep false - + true Qt4ProjectManager.MakeStep - + true -b --tag denali >> denali sha256sum %{buildDir} ProjectExplorer.ProcessStep - 4 + 5 Build Build ProjectExplorer.BuildSteps.Build @@ -164,30 +168,34 @@ true + Cocoplugin.BuildStep + + + true "" "" %{ActiveProject:ProjectDirectory}/imake.sh %{sourceDir} ProjectExplorer.ProcessStep - + true QtProjectManager.QMakeBuildStep false - + true Qt4ProjectManager.MakeStep - + true -b --tag denali >> denali sha256sum %{buildDir} ProjectExplorer.ProcessStep - 4 + 5 Build Build ProjectExplorer.BuildSteps.Build @@ -220,15 +228,19 @@ true + Cocoplugin.BuildStep + + + true QtProjectManager.QMakeBuildStep false - + true Qt4ProjectManager.MakeStep - 2 + 3 Build Build ProjectExplorer.BuildSteps.Build @@ -464,9 +476,9 @@ true RemoteLinux.DirectUploadStep - /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Release/denali /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali + /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Release/denali /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Release/denali /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali @@ -475,37 +487,37 @@ /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali - /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Release/denali + /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Release/denali /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali - /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Release/denali /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali + /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali - 192.168.10.228 - 192.168.10.228 - 192.168.10.138 - 192.168.137.210 - 192.168.10.159 - 192.168.10.186 - 192.168.10.167 - 192.168.137.170 - 192.168.137.25 - 192.168.137.30 - 192.168.10.186 192.168.137.3 - 192.168.40.23 192.168.137.24 + 192.168.40.23 192.168.137.26 192.168.137.170 + 192.168.10.186 192.168.137.36 192.168.137.125 192.168.137.202 192.168.137.247 + 192.168.137.210 + 192.168.10.159 + 192.168.10.228 + 192.168.10.228 + 192.168.10.138 + 192.168.137.25 + 192.168.137.30 + 192.168.10.186 + 192.168.10.167 + 192.168.137.170 /home/root @@ -530,12 +542,9 @@ /home/root - /opt/b2qt/3.1.18/sysroots/x86_64-pokysdk-linux - /opt/b2qt/3.1.18/sysroots/x86_64-pokysdk-linux /opt/b2qt/3.1.18/sysroots /opt/b2qt/3.1.18/sysroots /opt/b2qt/3.1.18/sysroots - /opt/b2qt/3.1.18/sysroots/x86_64-pokysdk-linux /opt/b2qt/3.1.18/sysroots /opt/b2qt/3.1.18/sysroots /opt/b2qt/3.1.18/sysroots @@ -545,55 +554,58 @@ /opt/b2qt/3.1.18/sysroots /opt/b2qt/3.1.18/sysroots /opt/b2qt/3.1.18/sysroots + /opt/b2qt/3.1.18/sysroots/x86_64-pokysdk-linux + /opt/b2qt/3.1.18/sysroots/x86_64-pokysdk-linux /opt/b2qt/3.1.18/sysroots /opt/b2qt/3.1.18/sysroots /opt/b2qt/3.1.18/sysroots + /opt/b2qt/3.1.18/sysroots/x86_64-pokysdk-linux /opt/b2qt/3.1.18/sysroots /opt/b2qt/3.1.18/sysroots - 2023-01-17T18:06:25.579 - 2023-01-17T18:18:03.749 - 2023-02-02T09:06:00.862 - 2023-02-02T01:52:20.307 - 2023-01-24T18:19:13.179 - 2023-01-18T17:47:08.797 - 2023-02-02T19:40:15.813 - 2023-01-27T10:15:15.423 - 2023-02-02T02:13:54.596 - 2023-02-02T02:30:48.337 - 2023-01-18T20:13:36.296 2023-02-02T02:40:56.627 - 2023-01-24T17:29:54.849 2023-02-02T02:05:29.947 + 2023-01-24T17:29:54.849 2023-02-01T05:00:56.449 2023-01-27T09:45:11.898 + 2023-01-18T20:13:36.296 2023-02-01T03:23:15.710 2023-02-02T02:07:25.922 2023-02-02T01:46:50.167 2023-02-02T02:26:33.738 + 2023-02-02T01:52:20.307 + 2023-01-24T18:19:13.179 + 2023-01-17T18:06:25.579 + 2023-01-17T18:18:03.749 + 2023-02-02T09:06:00.862 + 2023-02-02T02:13:54.596 + 2023-02-02T02:30:48.337 + 2023-01-18T17:47:08.797 + 2023-02-02T19:40:15.813 + 2023-01-27T10:15:15.423 - 2023-01-17T18:05:42.000 - 2023-01-17T18:17:25.000 - 2023-02-02T09:05:22.000 - 2023-02-02T01:52:16.000 - 2023-01-24T18:18:58.000 - 2023-01-18T17:47:04.000 - 2023-02-02T19:39:36.000 - 2023-01-27T10:15:08.000 - 2023-02-02T02:14:08.000 - 2023-02-02T02:31:01.000 - 2023-01-18T20:13:33.000 2023-02-02T02:41:10.000 - 2023-01-24T17:30:03.000 2023-02-02T02:05:42.000 + 2023-01-24T17:30:03.000 2023-02-01T05:00:51.000 2023-01-27T09:44:58.000 + 2023-01-18T20:13:33.000 2023-02-01T03:23:28.000 2023-02-02T02:07:21.000 2023-02-02T01:47:02.000 2023-02-02T02:26:46.000 + 2023-02-02T01:52:16.000 + 2023-01-24T18:18:58.000 + 2023-01-17T18:05:42.000 + 2023-01-17T18:17:25.000 + 2023-02-02T09:05:22.000 + 2023-02-02T02:14:08.000 + 2023-02-02T02:31:01.000 + 2023-01-18T17:47:04.000 + 2023-02-02T19:39:36.000 + 2023-01-27T10:15:08.000 2 Index: sources/ApplicationController.cpp =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/ApplicationController.cpp (.../ApplicationController.cpp) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/ApplicationController.cpp (.../ApplicationController.cpp) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -75,11 +75,8 @@ */ void ApplicationController::quit() { - // disabled coco begin validated: Application termination is not correctly done in coco!!! - // it has been tested and works perfectly fine in normal run. quitThread(); // validated } -// disabled coco end /*! * \brief ApplicationController::initConnections @@ -194,15 +191,11 @@ */ void ApplicationController::quitThread() { - // disabled coco begin validated: Application termination is not correctly done in coco!!! - // it has been tested and works perfectly fine in normal run. - if ( ! _thread ) return; // runs in thread moveToThread(qApp->thread()); // validated } -// disabled coco end /*! * \brief ApplicationController::onFailedTransmit @@ -254,11 +247,8 @@ */ void ApplicationController::onUSBDriveMount () { - // disabled coco begin validated: This needs user interaction to plug-in USB device - // has been tested manually emit didUSBDriveMount(); } -// disabled coco end /*! * \brief ApplicationController::onUSBDriveRemove @@ -267,11 +257,8 @@ */ void ApplicationController::onUSBDriveUmount() { - // disabled coco begin validated: This needs user interaction to plug-in USB device - // has been tested manually emit didUSBDriveUmount(); } -// disabled coco end /*! * \brief ApplicationController::onUSBDriveRemove @@ -314,11 +301,8 @@ */ void ApplicationController::onSDCardSpaceTooLow(quint8 vAvailablePercent) { - // disabled coco begin validated: This needs user interaction to plug-in SD Card - // has been tested manually emit didSDCardSpaceTooLow(vAvailablePercent); } -// disabled coco end /*! * \brief ApplicationController::onExportLog @@ -351,8 +335,6 @@ */ void ApplicationController::onExport() { - // disabled coco begin validated: This needs user interaction to plug-in USB device - // has been tested manually emit didExport(); } @@ -361,7 +343,6 @@ // DEBUG: qDebug() << "1" << vIndex << vFileName << vPercent; emit didExportStat(vIndex, vFileName, vPercent); } -// disabled coco end /*! * \brief ApplicationController::checkIn @@ -374,9 +355,6 @@ #ifndef DISABLE_KEEP_ALIVE QVariantList mData; int mFakeDataLen = gFakeData.length(); - // coco begin validated: This is a fake data generator for CANBus missing/swapped frames Testing - // will never be executed on the product - // has been tested manually if (mFakeDataLen) { if (gFakeSeqAtBegin) { createFakeSeqAtBeginLongMessage(mData, mFakeDataLen); @@ -385,7 +363,6 @@ createFakeSequencedLongMessage (mData, mFakeDataLen); } } - // disabled coco end else { mData += static_cast(GuiActionData::NoData); } @@ -401,9 +378,6 @@ */ void ApplicationController::createFakeSequencedLongMessage(QVariantList &vData, const int vFakeDataLen) { - // disabled coco begin validated: This is a fake data generator for CANBus missing/swapped frames Testing - // will never be executed on the product - // has been tested manually QByteArray data; if (vFakeDataLen == 1 && gFakeData == QByteArray::fromHex(gFakeData_default)) { static quint16 txCount = 0; @@ -447,7 +421,6 @@ vData += gFakeData; } } -// disabled coco end /*! * \brief ApplicationController::createFakeSequencedAtBeginLongMessage @@ -457,9 +430,6 @@ */ void ApplicationController::createFakeSeqAtBeginLongMessage(QVariantList &vData, const int vFakeDataLen) { - // disabled coco begin validated: This is a fake data generator for CANBus missing/swapped frames Testing - // will never be executed on the product - // has been tested manually QByteArray data; if (vFakeDataLen == 1 && gFakeData == QByteArray::fromHex(gFakeData_default)) { static quint32 txCount = 0; @@ -508,9 +478,7 @@ vData += gFakeData; } } -// disabled coco end - void ApplicationController::postDoneRequest() { AdjustUIPostFinalResultRequestData data; Index: sources/ApplicationController.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/ApplicationController.h (.../ApplicationController.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/ApplicationController.h (.../ApplicationController.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -88,8 +88,8 @@ void alarmTrigger (Gui::GuiAlarmID vAlarmID, bool vSend = false, bool vSingle = false); private slots: // Should be private for thread safety and is connected internally. - void onActionReceive (GuiActionType vAction, const QVariantList &vData); // UI <= HD/DG - void onActionTransmit(GuiActionType vAction, const QVariantList &vData); // UI => HD/DG + void onActionReceive (GuiActionType vAction, const QVariantList &vData); // UI <= TD/DD + void onActionTransmit(GuiActionType vAction, const QVariantList &vData); // UI => TD/DD void onMainTimerTimeout(); @@ -143,8 +143,8 @@ void didPOSTCloudSyncData (const QString &vNetAddress); signals: - void didActionReceive (GuiActionType vAction, const QVariantList &vData); // UI <= HD/DG - void didActionTransmit(GuiActionType vAction, const QVariantList &vData); // UI => HD/DG + void didActionReceive (GuiActionType vAction, const QVariantList &vData); // UI <= TD/DD + void didActionTransmit(GuiActionType vAction, const QVariantList &vData); // UI => TD/DD void didFailedTransmit(Sequence seq); void didUSBDriveMount (); Index: sources/MainTimer.cpp =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/MainTimer.cpp (.../MainTimer.cpp) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/MainTimer.cpp (.../MainTimer.cpp) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -36,9 +36,6 @@ */ bool MainTimer::init() { - // disabled coco begin validated: This is a fake data generator for CANBus missing/swapped frames Testing - // will never be executed on the product - // has been tested manually if (gFakeInterval) { startTimer(gFakeInterval); } @@ -78,8 +75,6 @@ static int oH,oM,oS; int cH,cM,cS; QDateTime::currentDateTime().date().getDate(&cy, &cm, &cd); - // disabled coco begin validated: Decided to not to check each second - // has been tested manually if (vIncludeTime) { QTime currentTime = QDateTime::currentDateTime().time(); cH = currentTime.hour(); @@ -102,7 +97,6 @@ oM = cM; oS = cS; } - // disabled coco end } else return false; Index: sources/Threads.cpp =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/Threads.cpp (.../Threads.cpp) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/Threads.cpp (.../Threads.cpp) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -71,13 +71,9 @@ */ void quitThread(QThread &vThread) { - // disabled coco begin validated: Application termination is not correctly done in coco!!! - // it has been tested and works perfectly fine in normal run. - // runs in main thread vThread.quit(); // validated vThread.wait(); // validated } - // disabled coco end /*! * \brief quitThreads @@ -87,8 +83,6 @@ */ void quitThreads() { - // disabled coco begin validated: Application termination is not correctly done in coco!!! - // it has been tested and works perfectly fine in normal run. quitThread(_CloudSync_Thread ); quitThread(_CanFrame_Thread ); quitThread(_CanAcknow_Thread ); @@ -100,5 +94,4 @@ quitThread(_Gui_Thread ); quitThread(_Logger_Thread ); } - // disabled coco end } Index: sources/bluetooth/BluetoothInterface.cpp =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/bluetooth/BluetoothInterface.cpp (.../BluetoothInterface.cpp) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/bluetooth/BluetoothInterface.cpp (.../BluetoothInterface.cpp) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -90,11 +90,8 @@ if ( _agent ) _agent ->deleteLater(); quitDevice(); - // disabled coco begin validated: Application termination is not correctly done in coco!!! - // it has been tested and works perfectly fine in normal run. quitThread(); // validated } -// disabled coco end /*! @@ -122,15 +119,10 @@ */ void BluetoothInterface::quitThread() { - // disabled coco begin validated: Application termination is not correctly done in coco!!! - // it has been tested and works perfectly fine in normal run. - if ( ! _thread ) return; - // runs in thread moveToThread(qApp->thread()); // validated } -// disabled coco end // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ // // ~~~~~~~~~~ THREAD SAFE state change notifications.~~~~~~~~~~ // Index: sources/canbus/CanInterface.cpp =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/canbus/CanInterface.cpp (.../CanInterface.cpp) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/canbus/CanInterface.cpp (.../CanInterface.cpp) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -47,9 +47,7 @@ if ( _init ) return false; _init = true; - // disabled coco begin validated: Manually tested since required to disable and enable the CANBus if ( ! initDevice() ) return false; - // disabled coco end if ( ! testDevice() ) return false; initConnections(); @@ -73,9 +71,7 @@ */ bool CanInterface::init(QThread &vThread) { - // disabled coco begin validated: Manually tested since required to disable and enable the CANBus if ( ! init() ) return false; - // disabled coco end initThread(vThread); return true; } @@ -87,11 +83,8 @@ */ void CanInterface::quit() { - // disabled coco begin validated: Application termination is not correctly done in coco!!! - // it has been tested and works perfectly fine in normal run. quitThread(); // verified } -// disabled coco end /*! * \brief CanInterface status @@ -109,7 +102,6 @@ * \param vEnabled - Enable console output if true */ void CanInterface::enableConsoleOut(bool vEnabled) { - // disabled coco begin validated: This code meant to be used only for debugging and tested manually if (_enableConsoleOut == vEnabled) return; _enableConsoleOut = vEnabled; if (_enableConsoleOut) { @@ -118,7 +110,6 @@ LOG_DEBUG("Console out CanInterface disabled"); } } -// disabled coco end /*! * \brief CanInterface connections definition @@ -127,9 +118,7 @@ */ void CanInterface::initConnections() { - // disabled coco begin validated: Manually tested since required to disable and enable the CANBus if (_canDevice) { - // disabled coco end connect(_canDevice, SIGNAL( framesReceived()), this , SLOT (onFrameReceive ())); @@ -168,15 +157,11 @@ */ void CanInterface::quitThread() { - // disabled coco begin validated: Application termination is not correctly done in coco!!! - // it has been tested and works perfectly fine in normal run. - if (! _thread) return; // runs in thread moveToThread(qApp->thread()); // verified } -// disabled coco end /*! * \brief CanInterface::createDevice @@ -187,13 +172,11 @@ { QString mError; _canDevice = QCanBus::instance()->createDevice(_canType, _canInterface, &mError); - // disabled coco begin validated: Manually tested since required to disable and enable the CANBus if (!_canDevice) { status(tr("Device Creation"), mError); LOG_DEBUG(status()); return false; } - // disabled coco end _canDevice->setConfigurationParameter(QCanBusDevice::CanFdKey , _canFDKey ); _canDevice->setConfigurationParameter(QCanBusDevice::BitRateKey , _canBitRate ); return true; @@ -222,9 +205,7 @@ */ void CanInterface::quitDevice() { - // disabled coco begin validated: Manually tested since required to disable and enable the CANBus if (!_canDevice) return; - // disabled coco end _canDevice->disconnectDevice(); delete _canDevice; _canDevice = nullptr; @@ -261,9 +242,7 @@ */ bool CanInterface::transmit(const QCanBusFrame &vFrame) { - // disabled coco begin validated: Manually tested since required to disable and enable the CANBus if( !_canDevice ) return false; - //disabled coco end return _canDevice->writeFrame(vFrame); } @@ -275,7 +254,6 @@ */ void CanInterface::consoleOut(const QCanBusFrame &vFrame, const QString &vFrameCount) { - // disabled coco begin validated: This code is only for debugging purposes and had been tested manually. if ( ! _enableConsoleOut ) return; const QString time = QString::fromLatin1("%1.%2 ") @@ -292,7 +270,6 @@ // the fprintf is used for the colored output fprintf(stderr, "%s %s %s %i %s\n", vFrameCount.toLatin1().constData(), time.toLatin1().constData(), flags.toLatin1().constData(), vFrame.frameId(), view.toLatin1().constData()); } -// disabled coco end /*! * \brief CanInterface::rxCount @@ -323,11 +300,8 @@ */ FrameCount CanInterface::erCount() { - // disabled coco begin validated: CANBus error handling has been tested manually. - // since it requires massive can messages sent/received to catch the error Types::safeIncrement(_erFrameCount); return _erFrameCount; - // disabled coco end } /*! @@ -338,8 +312,6 @@ */ QString CanInterface::frameFlags(const QCanBusFrame &vFrame) { - // disabled coco begin validated: CANBus error handling has been tested manually. - // since it requires massive can messages sent/received to catch the error QString result = QLatin1String(" --- "); if (vFrame.hasBitrateSwitch()) @@ -350,7 +322,6 @@ result[3] = QLatin1Char('L'); return result; - // disabled coco end } /*! @@ -360,8 +331,6 @@ */ void CanInterface::onFrameError(QCanBusDevice::CanBusError vError) { - // disabled coco begin validated: CANBus error handling has been tested manually. - // since it requires massive can messages sent/received to catch the error erCount(); switch (vError) { case QCanBusDevice::ReadError: @@ -382,7 +351,6 @@ } emit didFrameError(_canStatus); } -// disabled coco end /*! * \brief CanInterface::onFrameWritten @@ -405,16 +373,12 @@ */ void CanInterface::onFrameReceive () { - // disabled coco begin validated: Manually tested since required to disable and enable the CANBus if (!_canDevice) return; - // disabled coco end while (_canDevice->framesAvailable()) { const QCanBusFrame frame = _canDevice->readFrame(); rxCount(); - // disabled coco begin validated: This code is only for debugging purposes and had been tested manually. if ( _enableConsoleOut ) consoleOut(frame, QString("Rx:%1").arg(_rxFrameCount)); - // disabled coco end emit didFrameReceive(frame); } } @@ -429,9 +393,7 @@ { bool ok = transmit(vFrame); txCount(); - // disabled coco begin validated: This code is only for debugging purposes and had been tested manually. if ( _enableConsoleOut ) consoleOut(vFrame, QString("Tx:%1").arg(_txFrameCount)); - // disabled coco end emit didFrameTransmit(ok); } Index: sources/canbus/FrameInterface.cpp =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/canbus/FrameInterface.cpp (.../FrameInterface.cpp) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/canbus/FrameInterface.cpp (.../FrameInterface.cpp) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -74,11 +74,8 @@ */ void FrameInterface::quit() { - // disabled coco begin validated: Application termination is not correctly done in coco!!! - // it has been tested and works perfectly fine in normal run. quitThread(); // validated } -// disabled coco end /*! * \brief FrameInterface connections definition @@ -123,15 +120,11 @@ */ void FrameInterface::quitThread() { - // disabled coco begin validated: Application termination is not correctly done in coco!!! - // it has been tested and works perfectly fine in normal run. - if ( ! _thread ) return; // runs in thread moveToThread(qApp->thread()); // validated } -// disabled coco end /*! * \brief FrameInterface::transmitFrame @@ -172,12 +165,12 @@ FrameInterface::ChannelGroup channelGroup = ChannelGroup::eChannel_Unknown; switch (vFrameId) { - case eDialin_HD: - case eHD_Dialin: - case eDialin_DG: - case eDG_Dialin: - case eDialin_UI: - case eUI_Dialin: + case eDialin_TD : + case eTD_Dialin : + case eDialin_DD : + case eDD_Dialin : + case eDialin_UI : + case eUI_Dialin : if ( gDisableDialinUnhandled ) { channelGroup = ChannelGroup::eChannel_Ignores; } else { @@ -187,45 +180,41 @@ ok = ! gDisableDialinUnhandled; // if ok is true then it will be interpreted as unhandled messages. break; - case eChlid_HD_DG : - channelGroup = ChannelGroup::eChannel_Ignores; - break; - // disabled coco begin validated: The HD/DG communication has not been defined and implemented yet. - case eChlid_DG_HD : - // disabled coco end - // this channel is used for DG CheckIn for HW support and testing for now. + // these channels will be used for testing for now. + case eChlid_TD_DD : + case eChlid_DD_TD : + case eChlid_DD_FP : + case eChlid_FP_DD : //channelGroup = ChannelGroup::eChannel_Ignores; //break; - case eChlid_HD_UI : - case eChlid_HD_Alarm : - case eChlid_HD_Sync : - // disabled coco begin validated: The UI/DG communication has not been defined and implemented yet. - case eChlid_DG_Alarm : - case eChlid_DG_UI : - case eChlid_DG_Sync : - // disabled coco end - //case eChlid_DG_UI : // has duplicate value as eChlid_DG_Alarm + case eChlid_TD_UI : + case eChlid_TD_Alarm : + case eChlid_TD_Sync : + //case eChlid_DD_UI : // has duplicate value as eChlid_DD_Sync + case eChlid_DD_Alarm : + case eChlid_DD_Sync : + //case eChlid_FP_UI : // Only in α, will be removed in ꞵ + case eChlid_FP_Alarm : // Only in α, will be removed in ꞵ + case eChlid_FP_Sync : // Only in α, will be removed in ꞵ channelGroup = ChannelGroup::eChannel_Listens; break; - // disabled coco begin validated: The UI Alarm and Sync messages has not been defined and implemented yet. - case eChlid_UI_Alarm : - case eChlid_UI_Sync : - //case eChlid_UI_DG : + case eChlid_UI_Alarm : + case eChlid_UI_Sync : + case eChlid_UI_TD : + //case eChlid_UI_DD : // has duplicate value as eChlid_UI_Sync channelGroup = ChannelGroup::eChannel_Outputs; break; - // disabled coco end + default: ok = false; break; } - // disabled coco begin validated: manually tested if (vOK) *vOK = ok; if (vDebugChanngel) *vDebugChanngel = debugChannel; - // disabled coco end return channelGroup; } @@ -317,15 +306,11 @@ void FrameInterface::trnsmtHead() { if ( _txFrameList.isEmpty() ) { - // disabled coco begin validated: This is a fake data generator for CANBus missing/swapped frames Testing - // will never be executed on the product and shall be removed after the CANBus issues has been resolved. - // has been tested manually if ( gSendEmptyKeepAwake ) { transmitFrame(eChlid_LOWEST,QByteArray()); // Keep the CANBus awake. return; } } - // disabled coco end else { Frame frame = _txFrameList.first(); transmitFrame(frame.can_Id, frame.data); @@ -356,7 +341,6 @@ */ void FrameInterface::appendHead(Can_Id vCan_Id, const QByteArray &vData) { - // disabled coco begin validated: has been manually tested by sending over 4000 frames and not received by any other node. //DEBUG qDebug() << "F " << _txFrameList.count(); if (_txFrameList.count() >= _txFrameList_Max) { static quint32 i = 0; @@ -366,7 +350,6 @@ if ( i < UINT32_MAX - 1 ) i++ ; else i = 0; return; - // disabled coco end } Frame frame = Frame(vCan_Id, vData); Index: sources/canbus/MessageAcknowModel.cpp =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/canbus/MessageAcknowModel.cpp (.../MessageAcknowModel.cpp) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/canbus/MessageAcknowModel.cpp (.../MessageAcknowModel.cpp) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -72,11 +72,8 @@ void MessageAcknowModel::quit() { qDeleteAll(_acknowList); - // disabled coco begin validated: Application termination is not correctly done in coco!!! - // it has been tested and works perfectly fine in normal run. quitThread(); // validated } -// disabled coco end /*! * \brief MessageAcknowModel::initConnections @@ -116,15 +113,11 @@ */ void MessageAcknowModel::quitThread() { - // disabled coco begin validated: Application termination is not correctly done in coco!!! - // it has been tested and works perfectly fine in normal run. - if ( ! _thread ) return; // runs in thread moveToThread(qApp->thread()); // validated } -// disabled coco end /*! * \brief MessageAcknowModel::onAcknowTransmit Index: sources/canbus/MessageBuilder.cpp =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/canbus/MessageBuilder.cpp (.../MessageBuilder.cpp) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/canbus/MessageBuilder.cpp (.../MessageBuilder.cpp) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -289,7 +289,6 @@ * \param vEnabled */ void MessageBuilder::enableConsoleOut(bool vEnabled) { - // disabled coco begin validated: This code meant to be used only for debugging and tested manually if (_enableConsoleOut == vEnabled) return; _enableConsoleOut = vEnabled; if (_enableConsoleOut) { @@ -298,7 +297,6 @@ LOG_DEBUG("Console out MessageBuilder disabled"); } } -// disabled coco end /*! * \brief MessageBuilder::hasSyncByte @@ -443,7 +441,6 @@ return; } QByteArray view; - // disabled coco begin validated: printPayload and specially vUseColor is for debugging purposes and has been validated manually. if (vUseColor) { QList byteList; byteList = vPayload.toHex('.').split('.'); @@ -470,7 +467,6 @@ // the fprintf is used for the colored output fprintf(stderr, "%s\n", view.constData()); } - // disabled coco end } /*! Index: sources/canbus/MessageDispatcher.cpp =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/canbus/MessageDispatcher.cpp (.../MessageDispatcher.cpp) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/canbus/MessageDispatcher.cpp (.../MessageDispatcher.cpp) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -75,11 +75,8 @@ */ void MessageDispatcher::quit() { - // disabled coco begin validated: Application termination is not correctly done in coco!!! - // it has been tested and works perfectly fine in normal run. quitThread(); // validated } -// disabled coco end /*! * \brief Message Handler connections definition @@ -137,15 +134,11 @@ */ void MessageDispatcher::quitThread() { - // disabled coco begin validated: Application termination is not correctly done in coco!!! - // it has been tested and works perfectly fine in normal run. - if ( ! _thread ) return; // runs in thread moveToThread(qApp->thread()); // validated } -// disabled coco end /*! * \brief MessageDispatcher::onFrameReceive @@ -160,10 +153,8 @@ void MessageDispatcher::onFrameReceive(Can_Id vCan_Id, const QByteArray &vPayload) { // Append a message to the list - // disabled coco begin validated: if empty (first condition) is true, it must never check for the complete (second condition) // because if the list is empty there is no last() item if (_messageList[vCan_Id].isEmpty() || _messageList[vCan_Id].last().isComplete()) { - // disabled coco end _messageList[vCan_Id].append(Message()); } @@ -205,10 +196,8 @@ */ void MessageDispatcher::onFailedTransmit(Sequence vSequence) { - // disabled coco begin validated: Is a placeholder and has not been implemented yet emit didFailedTransmit(vSequence); } -// disabled coco end /*! * \brief MessageDispatcher::onActionTransmit @@ -353,21 +342,6 @@ onActionTransmit(GuiActionType::ID_AlarmVolumeSetReq, mData); } -/*! - * \brief MessageDispatcher::onAdjustment - * \details This method transmits the Alarm Acknowledge Request message. - * \param vData - Data model contains the user acknowledge request information. - * \return void - */ -/* // disabled coco begin validated: Manually tested. This model class is a placeholder and there is no use case for this now. -void MessageDispatcher::onAdjustment(const AlarmClearedConditionRequestData &vData) -{ - QVariantList mData; - mData += vData.alarmID; - onActionTransmit(GuiActionType::ID_AlarmClearedConditionReq, mData); -} -// disabled coco end */ - /** * \details This method transmits the Saline Bolus Adjustment Denali message. * \param vData - Data model contains treatment Saline Bolus adjustment state. @@ -894,13 +868,11 @@ #endif } - // disabled coco begin validated: Has been tested manually but in this function this cannot be false because the message interpreter is doing the same validation. // still checking here in case the logic has changed therefore buildFrame should still validate the message for developer safety. if ( ! _builder.buildFrames(vActionId, mData, frameList, mSequence) ) { LOG_DEBUG(QString("Incorrect Message cannot be built")); // TODO : LogInfo Improvement return; } - // disabled coco end if (mNeedsAcknow) { // NOTE : here vSequence should be used which is not negative // because when we get the Acknow it is not the negative @@ -1027,12 +999,10 @@ checkAcknowTransmit(vMessage, srcText); // then if needs acknow send it immediately. } - // disabled coco begin validated: Has been validated manually. If MessageInterpreter::interpretMessage fails, this also returns false if ( _interpreter.interpretMessage( vMessage, mData ) ) { ok = true; emit didActionReceive(vMessage.actionId, mData); } - // disabled coco end _messageList[vMessage.can_id].removeLast(); return ok; @@ -1045,15 +1015,13 @@ */ Sequence MessageDispatcher::rxCount() { - // disabled coco begin validated: has been manually validated since it requires so many received messages to reset the seq if ( _rxSequence < SEQUENCE_MAX ) { ++_rxSequence; } else { _rxSequence = 1; } return _rxSequence; } -// disabled coco end /*! * \brief MessageDispatcher::txCount @@ -1062,15 +1030,13 @@ */ Sequence MessageDispatcher::txCount() { - // disabled coco begin validated: has been manually validated since it requires so many received messages to reset the seq if ( _txSequence < SEQUENCE_MAX ) { ++_txSequence; } else { _txSequence = 1; } return _txSequence; } -// disabled coco end /*! * \brief MessageDispatcher::needsAcknow @@ -1093,12 +1059,16 @@ { bool ok = true; switch(vCan_Id) { // list if the channels UI shall not Ack - case eChlid_HD_DG : // 0x008, ///< HD => DG - case eChlid_DG_HD : // 0x010, ///< DG => HD - case eDialin_HD : // 0x400, ///< dialin => HD - case eHD_Dialin : // 0x401, ///< HD => dialin - case eDialin_DG : // 0x402, ///< dialin => DG - case eDG_Dialin : // 0x403, ///< DG => dialin + case eChlid_TD_DD : + case eChlid_DD_TD : + case eChlid_DD_FP : + case eChlid_FP_DD : + case eDialin_TD : + case eTD_Dialin : + case eDialin_DD : + case eDD_Dialin : + case eDialin_FP : + case eFP_Dialin : ok = false; break; default: break; Index: sources/canbus/MessageDispatcher.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/canbus/MessageDispatcher.h (.../MessageDispatcher.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/canbus/MessageDispatcher.h (.../MessageDispatcher.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -116,7 +116,6 @@ // Alarm GuiActionType::ID_AlarmUserActionReq , GuiActionType::ID_AlarmSilenceReq , - GuiActionType::ID_AlarmClearedConditionReq , GuiActionType::ID_AlarmActiveListReq , GuiActionType::ID_AlarmVolumeSetReq , // Pre-Treatment @@ -185,7 +184,7 @@ void initThread(QThread &vThread); void quitThread(); - void actionTransmit (GuiActionType vActionId, const QVariantList &vData, Sequence vSequence = 0, Can_Id vCanId = Can::Can_Id::eChlid_UI_HD); + void actionTransmit (GuiActionType vActionId, const QVariantList &vData, Sequence vSequence = 0, Can_Id vCanId = Can::Can_Id::eChlid_UI_TD); void framesTransmit (Can_Id vCan_Id, const FrameList &vFrameList); bool needsAcknow (GuiActionType vActionId); Index: sources/canbus/MessageGlobals.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/canbus/MessageGlobals.h (.../MessageGlobals.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/canbus/MessageGlobals.h (.../MessageGlobals.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -113,8 +113,6 @@ {Gui::GuiActionType::ID_AlarmStatus , 4 * 4 + 2 }, // 4 parameters each 4bytes + 1 parameter 2bytes {Gui::GuiActionType::ID_AlarmTriggered , 8 * 4 }, // 5 parameters each 4bytes {Gui::GuiActionType::ID_AlarmCleared , 1 * 4 }, // 1 parameter each 4bytes - {Gui::GuiActionType::ID_AlarmClearedConditionReq , 1 * 4 }, // 1 parameter each 4bytes // the same message 63:0x3F00 - {Gui::GuiActionType::ID_AlarmClearedConditionRsp , 1 * 4 }, // 1 parameter each 4bytes // the same message 63:0x3F00 {Gui::GuiActionType::ID_AlarmSilenceReq , 1 * 4 }, // 1 parameter each 1bytes {Gui::GuiActionType::ID_AlarmUserActionReq , 1 * 4 }, // 1 parameter each 4bytes {Gui::GuiActionType::ID_AlarmActiveListReq , 0 * 4 }, // 0 parameter each 4bytes @@ -318,35 +316,41 @@ // Broadcasts //// Alarm - eChlid_HD_Alarm = 0x001, ///< HD alarm broadcast - eChlid_DG_Alarm = 0x002, ///< DG alarm broadcast + eChlid_TD_Alarm = 0x001, ///< TD alarm broadcast + eChlid_DD_Alarm = 0x002, ///< DD alarm broadcast + eChlid_FP_Alarm = 0x003, ///< FP alarm broadcast eChlid_UI_Alarm = 0x004, ///< UI alarm broadcast [Out] //// Sync - eChlid_HD_Sync = 0x040, ///< HD sync broadcast - eChlid_DG_Sync = 0x080, ///< DG sync broadcast - eChlid_UI_Sync = 0x200, ///< UI sync broadcast [Out] + eChlid_TD_Sync = 0x100, ///< HD sync broadcast + eChlid_DD_Sync = 0x101, ///< DD sync broadcast + eChlid_FP_Sync = 0x102, ///< DD sync broadcast + eChlid_UI_Sync = 0x103, ///< UI sync broadcast [Out] // UI not listening - eChlid_HD_DG = 0x008, ///< HD => DG - eChlid_DG_HD = 0x010, ///< DG => HD + eChlid_TD_DD = 0x010, ///< TD => DD + eChlid_DD_TD = 0x011, ///< DD => TD + eChlid_DD_FP = 0x021, ///< DD => FP + eChlid_FP_DD = 0x020, ///< FP => DD // UI is listening - eChlid_HD_UI = 0x020, ///< HD => UI - eChlid_UI_HD = 0x100, ///< UI => HD [Out] + eChlid_TD_UI = 0x040, ///< TD => UI + eChlid_UI_TD = 0x041, ///< UI => TD [Out] // UI listens occasionally - eChlid_DG_UI = 0x070, ///< DG => UI - eChlid_UI_DG = 0x110, ///< UI => DG [Out] + eChlid_DD_UI = eChlid_DD_Sync , ///< DD => UI + eChlid_UI_DD = eChlid_UI_Sync , ///< UI => DD [Out] // Dialing channel has been requested by V&V team for CANBus testing // and clarify the source of the unexpected channel message // UI still does not do anything with the messages on these channels. - eDialin_HD = 0x400, ///< dialin => HD - eHD_Dialin = 0x401, ///< HD => dialin - eDialin_DG = 0x402, ///< dialin => DG - eDG_Dialin = 0x403, ///< DG => dialin - eDialin_UI = 0x404, ///< dialin => UI - eUI_Dialin = 0x405, ///< UI => dialin + eDialin_TD = 0x400, ///< dialin => TD + eTD_Dialin = 0x401, ///< TD => dialin + eDialin_DD = 0x402, ///< dialin => DD + eDD_Dialin = 0x403, ///< DD => dialin + eDialin_FP = 0x404, ///< dialin => FP + eFP_Dialin = 0x405, ///< FP => dialin + eDialin_UI = 0x406, ///< dialin => UI + eUI_Dialin = 0x407, ///< UI => dialin }; /*! @@ -355,9 +359,10 @@ */ enum Can_Source { eCan_Unknown = -1, - eCan_HD = 0, - eCan_DG = 1, - eCan_DI = 2, + eCan_TD = 0, + eCan_DD = 1, + eCan_FP = 2, + eCan_DI = 3, }; /*! @@ -374,20 +379,16 @@ bool initialized = false; bool isEmpty () { - // disabled coco begin validated:Has been validated manually. // Since the crc is part of the data and there is no message without crc // initialized flag and data.length() == 0 became the same. // It is preferred to keep it as is so that the initialization is independent of data. return !initialized || !data.length(); - // disabled coco end } bool isComplete() { - // disabled coco begin validated:Has been validated manually. // Since the crc is part of the data and there is no message without crc // then a message would never be empty. // It is preferred to keep it as is so that the initialization is independent of data. return !isEmpty() && data.length() == length; - // disabled coco end } }; Index: sources/canbus/MessageInterpreter.cpp =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/canbus/MessageInterpreter.cpp (.../MessageInterpreter.cpp) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/canbus/MessageInterpreter.cpp (.../MessageInterpreter.cpp) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -75,11 +75,11 @@ if ( ! isValidMessage(vMessage, vIdCheck) ) return ok; ok = tModel.fromByteArray(vMessage.data); tModel.toVariantList(vData); - // disabled coco begin validated : Tested manually. This code will never go false + // This code will never go false // because the isValidMessage is catching errors. // only is checking here for developer safety if logic has changed. if ( ! ok ) return false; - // disabled coco end + emit didActionReceive(tModel.data()); LOG_APPED_MSG(vIdCheck, tModel.toString()); DEBUG_SIGNAL(vIdCheck, typeid(TModel).name()) @@ -197,7 +197,7 @@ { bool ok = true; if (vCanId == Can::Can_Id::eChlid_NONE ) - vCanId = Can::Can_Id::eChlid_UI_HD ; + vCanId = Can::Can_Id::eChlid_UI_TD ; vPayload.clear(); int length = vData.length(); @@ -274,15 +274,13 @@ case Gui::GuiActionType::ID_AlarmSilenceReq : INTERPRET_TRANSMIT_MESSAGE(AlarmSilenceRequestData ); break; case Gui::GuiActionType::ID_AlarmUserActionReq : INTERPRET_TRANSMIT_MESSAGE(AlarmUserActionRequestData ); break; case Gui::GuiActionType::ID_AlarmVolumeSetReq : INTERPRET_TRANSMIT_MESSAGE(AdjustHDAlarmVolumeRequestData ); break; - // disabled coco begin validated: Manually tested. This model class is a placeholder for the message 63(0x3F00) and there is no use case for this now. - case Gui::GuiActionType::ID_AlarmClearedConditionReq : INTERPRET_TRANSMIT_MESSAGE(AlarmClearedConditionRequestData ); break; + // This model class is a placeholder for the message 63(0x3F00) and there is no use case for this now. case Gui::GuiActionType::ID_AlarmActiveListReq : INTERPRET_TRSMT_MT_MESSAGE(AlarmActiveListRequestData ); break; case Gui::GuiActionType::ID_AlarmTriggered : INTERPRET_TRANSMIT_MESSAGE(AlarmTriggeredRequestData ); break; // HD reset in service mode case Gui::GuiActionType::ID_ResetHDInServiceModeReq : INTERPRET_TRSMT_MT_MESSAGE(AdjustHDResetInSrvcRequestData ); break; - // disabled coco end default: QString mActionIdHexString = Format::toHexString(vActionId); LOG_DEBUG(tr("Unknown transmit Message with ID '%1'").arg(mActionIdHexString)); @@ -301,26 +299,35 @@ Can_Source MessageInterpreter::identifySource(Can_Id vCanId, QString *vText) { switch (vCanId) { - case eChlid_HD_DG : // 0x008, ///< HD => DG - case eChlid_HD_UI : // 0x020, ///< HD => UI - case eChlid_HD_Alarm: // 0x001, ///< HD alarm broadcast - case eChlid_HD_Sync : // 0x040, ///< HD sync broadcast - if (vText) *vText = "HD"; - return Can_Source::eCan_HD; + case eChlid_TD_DD : + case eChlid_TD_UI : + case eChlid_TD_Alarm: + case eChlid_TD_Sync : + if (vText) *vText = "TD"; + return Can_Source::eCan_TD; - case eChlid_DG_HD : // 0x010, ///< DG => HD - case eChlid_DG_UI : // 0x070, ///< DG => UI - case eChlid_DG_Alarm: // 0x002, ///< DG alarm broadcast - case eChlid_DG_Sync : // 0x080, ///< DG sync broadcast - if (vText) *vText = "DG"; - return Can_Source::eCan_DG; + case eChlid_DD_TD : + //case eChlid_DD_UI : // has duplicate value as eChlid_DD_Sync + case eChlid_DD_Alarm: + case eChlid_DD_Sync : + if (vText) *vText = "DD"; + return Can_Source::eCan_DD; - case eDialin_HD : // 0x400, ///< dialin => HD - case eHD_Dialin : // 0x401, ///< HD => dialin - case eDialin_DG : // 0x402, ///< dialin => DG - case eDG_Dialin : // 0x403, ///< DG => dialin - case eDialin_UI : // 0x404, ///< dialin => UI - case eUI_Dialin : // 0x405, ///< UI => dialin + case eChlid_DD_FP : + //case eChlid_FP_UI : + case eChlid_FP_Alarm: + case eChlid_FP_Sync : + if (vText) *vText = "FP"; + return Can_Source::eCan_FP; + + case eDialin_TD : + case eTD_Dialin : + case eDialin_DD : + case eDD_Dialin : + case eDialin_FP : + case eFP_Dialin : + case eDialin_UI : + case eUI_Dialin : if (vText) *vText = "DI"; return Can_Source::eCan_DI; @@ -332,32 +339,45 @@ /*! * \brief MessageInterpreter::identifyDestination - * \details Identifies the destination of the message regarding the channel id for the acknowledges + * \details Identifies the destination of the message regarding the channel id for the ACKNOWLEDGES * \return the destination of the message in enum * \sa can::Can_Source * \sa can::Can_Id */ Can_Id MessageInterpreter::identifyDestination(Can_Id vCanId, QString *vText) { + //// + //TODO: let's decide if UI should ack anything other than direct recieved message ( [ TD, DD ] => UI ) + //// switch (vCanId) { - case eChlid_HD_UI : // 0x020, ///< HD => UI - case eChlid_HD_Alarm: // 0x001, ///< HD alarm broadcast - case eChlid_HD_Sync : // 0x040, ///< HD sync broadcast - if (vText) *vText = "HD"; - return Can_Id::eChlid_UI_HD; + case eChlid_TD_UI : + case eChlid_TD_Alarm: + case eChlid_TD_Sync : + if (vText) *vText = "TD"; + return Can_Id::eChlid_UI_TD; - case eChlid_DG_UI : // 0x070, ///< DG => UI - case eChlid_DG_Alarm: // 0x002, ///< DG alarm broadcast - case eChlid_DG_Sync : // 0x080, ///< DG sync broadcast - if (vText) *vText = "DG"; - return Can_Id::eChlid_UI_DG; + //case eChlid_DD_UI : // has duplicate value as eChlid_DD_Sync + case eChlid_DD_Alarm: + case eChlid_DD_Sync : + if (vText) *vText = "DD"; + return Can_Id::eChlid_UI_DD; - case eDialin_HD : // 0x400, ///< dialin => HD - case eHD_Dialin : // 0x401, ///< HD => dialin - case eDialin_DG : // 0x402, ///< dialin => DG - case eDG_Dialin : // 0x403, ///< DG => dialin - case eDialin_UI : // 0x404, ///< dialin => UI - case eUI_Dialin : // 0x405, ///< UI => dialin + // FP is not designed to directly communicate with UI + //case eChlid_DD_FP : + //case eChlid_FP_UI : + //case eChlid_FP_Alarm: + //case eChlid_FP_Sync : + // if (vText) *vText = "FP"; + // return Can_Id::eChlid_UI_Sync; + + case eDialin_TD : + case eTD_Dialin : + case eDialin_DD : + case eDD_Dialin : + case eDialin_FP : + case eFP_Dialin : + case eDialin_UI : + case eUI_Dialin : if (vText) *vText = "DI"; return Can_Id::eChlid_UI_Sync; @@ -391,8 +411,8 @@ if ( ! gLogUnhandledOnly ) { switch (identifySource(vMessage.can_id)) { - case Can_Source::eCan_HD: ok = interpretMessage_HD(vMessage, vData); break; - case Can_Source::eCan_DG: ok = interpretMessage_DG(vMessage, vData); break; + case Can_Source::eCan_TD: ok = interpretMessage_HD(vMessage, vData); break; + case Can_Source::eCan_DD: ok = interpretMessage_DG(vMessage, vData); break; default : printUnhandled (vMessage ); break; // ok is false, the individual interpreters for ?HD/DG should not be called, and it should be done here. } } @@ -522,10 +542,8 @@ case Gui::GuiActionType::ID_AlarmTriggered : ok = notify(vMessage, vData, Gui::GuiActionType::ID_AlarmTriggered ); break; case Gui::GuiActionType::ID_AlarmCleared : ok = notify(vMessage, vData, Gui::GuiActionType::ID_AlarmCleared ); break; case Gui::GuiActionType::ID_AlarmVolumeSetRsp : ok = notify(vMessage, vData, Gui::GuiActionType::ID_AlarmVolumeSetRsp ); break; - // disabled coco begin validated: Manually tested. This model class is a placeholder for the message 63(0x3F00) and there is no use case for this now. - case Gui::GuiActionType::ID_AlarmClearedConditionRsp : ok = notify(vMessage, vData, Gui::GuiActionType::ID_AlarmClearedConditionRsp ); break; + // This model class is a placeholder for the message 63(0x3F00) and there is no use case for this now. case Gui::GuiActionType::ID_AlarmActiveListRsp : ok = notify(vMessage, vData, Gui::GuiActionType::ID_AlarmActiveListRsp ); break; - // disabled coco end // unhandled messages: these will only be logged as received message // there has nothing been defined for these messages. @@ -614,9 +632,8 @@ int index = 0; Types::U32 mCanBUSFaultCount; ok = GetValue(vMessage.data, index, mCanBUSFaultCount); - // disabled coco begin validated : developer safety if for any reason length of CanBUSFaultCount set to 0 + // developer safety if for any reason length of CanBUSFaultCount set to 0 if (ok) { - // disabled coco end vData += mCanBUSFaultCount.value; } return ok; @@ -711,8 +728,8 @@ if (i == 0) { QString ID; switch (identifySource(vMessage.can_id, &ID)) { - case Can_Source::eCan_HD: logString += ID + ",~" + item; break; - case Can_Source::eCan_DG: logString += ID + ",~" + item; break; + case Can_Source::eCan_TD: logString += ID + ",~" + item; break; + case Can_Source::eCan_DD: logString += ID + ",~" + item; break; case Can_Source::eCan_DI: logString += ID + ",~" + item; break; default : logString += ID + ",~" + item; break; } Index: sources/cloudsync/CloudSyncController.cpp =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/cloudsync/CloudSyncController.cpp (.../CloudSyncController.cpp) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/cloudsync/CloudSyncController.cpp (.../CloudSyncController.cpp) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -73,11 +73,8 @@ */ void CloudSyncController::quit() { - // disabled coco begin validated: CloudSync termination is not correctly done in coco!!! - // it has been tested and works perfectly fine in normal run. quitThread(); // validated } -// disabled coco end /*! * \brief CloudSyncController::doRegister @@ -148,15 +145,11 @@ */ void CloudSyncController::quitThread() { - // disabled coco begin validated: CloudSync termination is not correctly done in coco!!! - // it has been tested and works perfectly fine in normal run. - if ( ! _thread ) return; // runs in thread moveToThread(qApp->thread()); // validated } -// disabled coco end /*! * \brief CloudSyncController::timerEvent Index: sources/device/DeviceController.cpp =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/device/DeviceController.cpp (.../DeviceController.cpp) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/device/DeviceController.cpp (.../DeviceController.cpp) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -158,15 +158,11 @@ */ void DeviceController::quitThread() { - // disabled coco begin validated: Application termination is not correctly done in coco!!! - // it has been tested and works perfectly fine in normal run. - if ( ! _thread ) return; // runs in thread moveToThread(qApp->thread()); // validated } -// disabled coco end /*! * \brief DeviceController::usbSeek @@ -178,7 +174,6 @@ */ bool DeviceController::usbSeek(QString &vDevice) { - // disabled coco begin validated: Needed User Interaction so tested manually // This function cannot be tested on any device other than target // because only on device the usb is /dev/sdX# and others are mmcblk___ // but on VM and normal Linuxes all drives are /dev/sdX# and cannot be identified as USB. @@ -197,7 +192,6 @@ } vDevice = device; return false; - // disabled coco end } /*! @@ -438,8 +432,6 @@ */ void DeviceController::usbError(const QString &vDevice) { - // disabled coco begin validated: This needs user interaction to plug-in/out the USB device - // has been tested manually QString error; static QString lastError; switch (errno) { @@ -458,7 +450,6 @@ lastError = error; } } -// disabled coco end /*! * \brief DeviceController::onUSBDriveUmount @@ -467,11 +458,8 @@ */ void DeviceController::onUSBDriveUmount() { - // disabled coco begin validated: This needs user interaction to plug-in/out the USB device - // has been tested manually _umounted = true; } -// disabled coco end /*! * \brief DeviceController::usbMount @@ -505,15 +493,12 @@ */ void DeviceController::usbRemove() { - // disabled coco begin validated: This needs user interaction to plug-out the USB device - // has been tested manually usbUmount(USB_Mount_Point); _umounted = false; _removed = true; LOG_DEBUG("USB drive removed"); emit didUSBDriveRemove(); } -// disabled coco end /*! * \brief DeviceController::checkError Index: sources/gui/GuiController.cpp =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/gui/GuiController.cpp (.../GuiController.cpp) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/gui/GuiController.cpp (.../GuiController.cpp) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -56,11 +56,8 @@ */ void GuiController::quit() { - // disabled coco begin validated: Application termination is not correctly done in coco!!! - // it has been tested and works perfectly fine in normal run. quitThread(); // validated } -// disabled coco end /*! * \brief GuiController::initConnections @@ -121,8 +118,6 @@ */ void GuiController::initThread(QThread &vThread) { - // disabled coco begin validated: Application termination is not correctly done in coco!!! - // it has been tested and works perfectly fine in normal run. // runs in main thread Q_ASSERT_X(QThread::currentThread() == qApp->thread() , __func__, "The Class initialization must be done in Main Thread" ); _thread = &vThread; @@ -131,7 +126,6 @@ _thread->start(); moveToThread(_thread); } -// disabled coco end /*! * \brief GuiController::quitThread @@ -140,14 +134,11 @@ */ void GuiController::quitThread() { - // disabled coco begin validated: Application termination is not correctly done in coco!!! - // it has been tested and works perfectly fine in normal run. if ( ! _thread ) return; // runs in thread moveToThread(qApp->thread()); // validated } -// disabled coco end /*! * \brief GuiController initializer @@ -176,10 +167,9 @@ */ void GuiController::doActionTransmit(GuiActionType vAction, const QVariantList &vData) { - // disabled coco begin validated: This is a sample code and currently does nothing + // This is a sample code and currently does nothing // The handleTransmit is a place holder and currently has not been used. if (! handleTransmit(vAction, vData)) { - // disabled coco end emit didActionTransmit(vAction, vData); } } @@ -195,7 +185,7 @@ */ bool GuiController::handleTransmit(GuiActionType vAction, const QVariantList &vData) { - // disabled coco begin validated: This is a sample code and currently does nothing + // This is a sample code and currently does nothing Q_UNUSED(vAction) Q_UNUSED(vData) @@ -224,7 +214,6 @@ } return false; } -// disabled coco end /*! * \brief Action commanded by HD @@ -247,11 +236,9 @@ */ void GuiController::onUSBDriveMount() { - // disabled coco begin validated: This needs user interaction to plug-in USB device - // has been tested manually + // This needs user interaction to plug-in USB device emit didUSBDriveMount(); } -// disabled coco end /*! * \brief GuiController::doUSBDriveUmount @@ -260,11 +247,9 @@ */ void GuiController::doUSBDriveUmount() { - // disabled coco begin validated: This needs user interaction to plug-out the USB device - // has been tested manually + // This needs user interaction to plug-out the USB device emit didUSBDriveUmount(); } -// disabled coco end /*! * \brief GuiController::onUSBDriveRemove @@ -308,11 +293,9 @@ */ void GuiController::onSDCardSpaceTooLow(quint8 vAvailablePercent) { - // disabled coco begin validated: This needs to fill up the SD-Card and test with human interactions. - // has been tested manually + // This needs to fill up the SD-Card and test with human interactions. emit didSDCardSpaceTooLow(vAvailablePercent); } -// disabled coco end /*! * \brief GuiController::onExport Index: sources/gui/GuiController.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/gui/GuiController.h (.../GuiController.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/gui/GuiController.h (.../GuiController.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -68,7 +68,7 @@ bool handleTransmit(GuiActionType vAction, const QVariantList &vData); public slots: - void doActionTransmit(GuiActionType vAction, const QVariantList &vData); // UI => HD/DG + void doActionTransmit(GuiActionType vAction, const QVariantList &vData); // UI => TD/DD void doUSBDriveUmount (); // UI => OS void doExportLog (const GuiStringIndexMap &vExportList); // UI => OS @@ -95,8 +95,8 @@ void onPOSTPass (bool vPass); signals: - void didActionReceive (GuiActionType vAction, const QVariantList &vData); // UI <= HD/DG - void didActionTransmit(GuiActionType vAction, const QVariantList &vData); // UI => HD/DG + void didActionReceive (GuiActionType vAction, const QVariantList &vData); // UI <= HD/DD + void didActionTransmit(GuiActionType vAction, const QVariantList &vData); // UI => TD/DD void didUSBDriveMount (); void didUSBDriveUmount(); Index: sources/gui/GuiGlobals.cpp =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/gui/GuiGlobals.cpp (.../GuiGlobals.cpp) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/gui/GuiGlobals.cpp (.../GuiGlobals.cpp) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -181,9 +181,8 @@ registerQmlTypes(); QObject::connect(_viewer, &MainView::statusChanged, qApp, [=](MainView::Status vStatus) { - // disabled coco begin validated: this portion of the code is handling application initialization + // this portion of the code is handling application initialization // and if not initialized correctly will terminate the application . - // So it had been manually tested. bool ok = vStatus == MainView::Ready; if (ok) { _viewer->show(); @@ -194,7 +193,6 @@ } QCoreApplication::exit(-1); } - // disabled coco end }, Qt::QueuedConnection ); LOG_DEBUG("MainView Starting"); Index: sources/gui/GuiGlobals.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/gui/GuiGlobals.h (.../GuiGlobals.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/gui/GuiGlobals.h (.../GuiGlobals.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -75,8 +75,7 @@ ID_HDGeneralEvent = 0xA400, ID_DGGeneralEvent = 0xA500, - ID_DGCheckIn = 0x0600, - ID_TDCheckIn = 0x0700, + ID_TDCheckIn = 0x1000, // 16 //// ----- @LEAHIZED // Generic Confirmation ID_DuetConfirmHDi = 0xBA00, // 186 @@ -104,7 +103,6 @@ ID_AdjustSerialHDRsp = 0x9900, // 153 ID_AdjustSerialDGRsp = 0x8800, // 136 - // Service Information ID_AdjustServiceDatesReq = 0x8900, // 137 ID_AdjustServiceDatesHDRsp = 0x8A00, // 138 @@ -122,7 +120,7 @@ ID_HDRTCEpochData = 0x0A00, // 10 // State Messages - ID_HDOperationModeData = 0x2500, // 37 + ID_HDOperationModeData = 0x1200, // 18 //// ----- @LEAHIZED ID_PreTreatmentStates = 0x5C00, // 92 ID_TreatmentStates = 0x0F00, // 15 ID_PostTreatmentStates = 0x7700, // 119 @@ -147,8 +145,6 @@ ID_AlarmStatus = 0x0200, ID_AlarmTriggered = 0x0300, ID_AlarmCleared = 0x0400, - ID_AlarmClearedConditionReq = 0x3F00, // 63 // the same code is used for every unit to send and receive over the CANBus - ID_AlarmClearedConditionRsp = 0x3F00, // 63 // the same code is used for every unit to send and receive over the CANBus ID_AlarmSilenceReq = 0x3200, // 50 ID_AlarmUserActionReq = 0x4000, // 64 // there is no response since it is kind of the response to the ID_AlarmStatus from UI to HD ID_AlarmActiveListReq = 0x9700, // 151 @@ -232,7 +228,7 @@ ID_AdjustHeparinRsp = 0x4C00, // 76 // Ultrafiltration - ID_AdjustUltrafiltrationStateReq = 0x1000, // 16 + ID_AdjustUltrafiltrationStateReq = 0x100F, // 16 //// ----- @CRAPIZED: had to change to avoid duplication ID_AdjustUltrafiltrationStateRsp = 0x4100, // 65 ID_AdjustUltrafiltrationEditReq = 0x1100, // 17 Index: sources/gui/GuiView.cpp =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/gui/GuiView.cpp (.../GuiView.cpp) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/gui/GuiView.cpp (.../GuiView.cpp) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -110,11 +110,9 @@ void GuiView::doActionTransmit(GuiActionType vAction, const QVariantList &vData) { // TODO : Remove this code later when Investigated thoroughly. - // disabled coco begin validated: This code later needs to be removed when Investigated thoroughly. - // has been tested manually + // This code later needs to be removed when Investigated thoroughly. emit didActionTransmit(vAction, vData); } -// disabled coco end /*! * \brief GuiView::doActionTransmit @@ -128,13 +126,11 @@ void GuiView::doActionTransmit(GuiActionType vAction, const QVariant &vData) { // TODO : Remove this code later when Investigated thoroughly. - // disabled coco begin validated: This code later needs to be removed when Investigated thoroughly. - // has been tested manually + // This code later needs to be removed when Investigated thoroughly. QVariantList mData; mData += vData; emit didActionTransmit(vAction, mData); } -// disabled coco end /*! * \brief GuiView::doUSBDriveMount @@ -143,13 +139,10 @@ */ void GuiView::onUSBDriveMount () { - // disabled coco begin validated: This needs user interaction to plug-in USB device - // has been tested manually usbIsReady (true ); usbIsRemoved(false); emit didUSBDriveMount (); } -// disabled coco end /*! * \brief GuiView::doUSBDriveUmount @@ -158,14 +151,11 @@ */ void GuiView::doUSBDriveUmount() { - // disabled coco begin validated: This needs user interaction to plug-in USB device - // has been tested manually usbIsReady (false); usbIsRemoved(false); exportRunning(false); emit didUSBDriveUmount(); } -// disabled coco end /*! * \brief GuiView::doUSBDriveRemove @@ -174,14 +164,11 @@ */ void GuiView::onUSBDriveRemove() { - // disabled coco begin validated: This needs user interaction to plug-in USB device - // has been tested manually usbIsReady (false); usbIsRemoved(true ); exportRunning(false); emit didUSBDriveRemove(); } -// disabled coco end /*! * \brief GuiView::onSDCardStateChange @@ -192,16 +179,13 @@ */ void GuiView::onSDCardStateChange(bool vIsReady, bool vIsReadOnly) { - // disabled coco begin validated: This needs user interaction to plug-in USB device - // has been tested manually //DEBUG:0: qDebug() << " ***** GuiView " << Storage::SDCard_Base_Path_Name << vIsReady; sdIsReady (vIsReady ); sdIsReadOnly(vIsReadOnly); if (! vIsReady || vIsReadOnly) exportRunning(false); //DEBUG:0: qDebug() << __FUNCTION__ << _sdIsReady << _sdIsReadOnly; } -// disabled coco end /*! * \brief GuiController::doSDCardSpaceTooLow @@ -210,11 +194,8 @@ */ void GuiView::onSDCardSpaceTooLow(quint8 vAvailablePercent) { - // disabled coco begin validated: This needs to fill up the SD-Card and test with human interactions. - // has been tested manually sdTooLowPecent(vAvailablePercent); } -// disabled coco end /*! * \brief GuiView::onExport Index: sources/gui/GuiView.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/gui/GuiView.h (.../GuiView.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/gui/GuiView.h (.../GuiView.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -42,9 +42,6 @@ { Q_OBJECT - // disabled coco begin validated: This needs user interaction to plug-in/out SD Card - // has been tested manually - PROPERTY(QString, platform , QGuiApplication::platformName()) PROPERTY(bool , sdIsReady , false ) @@ -57,7 +54,6 @@ // this property will be set if the sd-card space gets lower than required amount in percent that has been defined in DeviceController. PROPERTY(qint8 , sdTooLowPecent, -1 ) // -1 means the event never happened - // disabled coco end #ifdef BUILD_FOR_DESKTOP PROPERTY(bool , usbIsReady , true ) @@ -125,8 +121,8 @@ void onPOSTPass (bool vPassed); public slots: // is public since will be used in the UI and is in the same thread. - void doActionTransmit(GuiActionType vAction, const QVariantList &vData); // UI => HD/DG - void doActionTransmit(GuiActionType vAction, const QVariant &vData); // UI => HD/DG + void doActionTransmit(GuiActionType vAction, const QVariantList &vData); // UI => TD/DD + void doActionTransmit(GuiActionType vAction, const QVariant &vData); // UI => TD/DD void doUSBDriveUmount(); void doExportLog (); @@ -146,8 +142,8 @@ void doGenerateQRImage (const QString &vText ); signals: - void didActionReceive (GuiActionType vAction, const QVariantList &vData); // UI <= HD/DG - void didActionTransmit(GuiActionType vAction, const QVariantList &vData); // UI => HD/DG + void didActionReceive (GuiActionType vAction, const QVariantList &vData); // UI <= HD/DD + void didActionTransmit(GuiActionType vAction, const QVariantList &vData); // UI => TD/DD void didUSBDriveMount (); void didUSBDriveUmount(); Index: sources/gui/qml/AlarmItem.qml =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/gui/qml/AlarmItem.qml (.../AlarmItem.qml) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/gui/qml/AlarmItem.qml (.../AlarmItem.qml) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -48,10 +48,6 @@ readonly property alias alarm_AlarmID : vAlarmStatus.alarm_AlarmID readonly property alias hasAlarm : vAlarmStatus.hasAlarm - function clearAlarm() { - vAlarmStatus.doClearCondition() - } - function alarmMinimize() { // The has alarm check has been added here to let other components call this function, // without worrying about the alarmDialog popoing up without an alarm present. Index: sources/gui/qml/components/MainMenu.qml =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/gui/qml/components/MainMenu.qml (.../MainMenu.qml) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/gui/qml/components/MainMenu.qml (.../MainMenu.qml) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -96,7 +96,12 @@ Rectangle { id: _backgroundRect anchors.fill: parent color: Colors.backgroundMainMenu + // gradient: Gradient { + // GradientStop { position: 0; color: "#FEFEFE" } + // GradientStop { position: 1; color: "#0F2841" } + // } } + MouseArea { id: _clickPropagationDisabler anchors.fill: parent } @@ -122,6 +127,7 @@ height : parent.height text.text : isItemVisible(index) ? modelData : "" // didn't change the visibility to preserve the button location and just didn't display the title and highlihgt bar. border.width: 0 + pixelSize : 40 //// ----- @LEAHIZED onPressed: { emit_itemPressed(index) } Index: sources/gui/qml/globals/Colors.qml =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/gui/qml/globals/Colors.qml (.../Colors.qml) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/gui/qml/globals/Colors.qml (.../Colors.qml) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -32,13 +32,13 @@ readonly property color transparent : "Transparent" // No Color readonly property color separatorLine : "#5f809d" - readonly property color backgroundMain : "#1A344D" + readonly property color backgroundMain : "#1A344D" //// ----- @LEAHIZED readonly property color backgroundButtonNormal : transparent readonly property color backgroundButtonSelect : "#438FEB" readonly property color backgroundButtonSelectDark : "#135088" // "#214773" readonly property color backgroundDialog : "#254670" readonly property color backgroundMenu : "#14314C" - readonly property color backgroundMainMenu : "#0D2639" + readonly property color backgroundMainMenu : "#0F2841" //// ----- @LEAHIZED readonly property color backgroundDottedMenu : "#64809D" readonly property color backgroundSlider : "#195187" @@ -63,7 +63,7 @@ readonly property color textTickMark : "#438FEB" readonly property color textInvalid : red - readonly property color borderButton : "#4290EC" //K:D //"#438FEB" + readonly property color borderButton : "#4696F7" //// ----- @LEAHIZED readonly property color borderButtonHalfDarker : Qt.darker(borderButton, 1.50) readonly property color borderButtonSelected : "#db8f00" readonly property color borderButtonUnselected : "#53667d" Index: sources/gui/qml/globals/Variables.qml =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/gui/qml/globals/Variables.qml (.../Variables.qml) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/gui/qml/globals/Variables.qml (.../Variables.qml) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -25,8 +25,8 @@ QtObject { readonly property int keybardAnimationDuration : 200 - readonly property int applicationWidth : 1280 - readonly property int applicationHeight : 800 + readonly property int applicationWidth : 1920 //// ----- @LEAHIZED + readonly property int applicationHeight : 1080 //// ----- @LEAHIZED readonly property int buttonSpacing : 150 readonly property int dialogIconHeight : 50 readonly property int dialogIconWidth : 50 @@ -35,7 +35,7 @@ readonly property int headerButtonsMargin : 35 readonly property int confirmButtonWidth : 155 - readonly property int mainMenuHeight : 70 + readonly property int mainMenuHeight : 100 //// ----- @LEAHIZED readonly property int minVGap : 15 readonly property int minVGap2 : 30 @@ -57,11 +57,11 @@ readonly property int touchRectWidth : 512 //K:D //425 readonly property int touchRectHeight : 85 //K:D //70 - readonly property int touchRectRadius : 45 + readonly property int touchRectRadius : 15 readonly property int titleBottomPadding : 25 - readonly property int columnSpacing : 25 //K:D //20 + readonly property int columnSpacing : 60 //// ----- @LEAHIZED readonly property int dialogMargin : mainMenuHeight * 2 readonly property int dialogWidth : applicationWidth - dialogMargin @@ -107,7 +107,7 @@ readonly property int sliderCircleDiameter : 30 readonly property int pressuresProgressbarWidth : 725 - + readonly property int gridSelectionButtonHeight : 100 readonly property int gridSelectionButtonWidth : 375 Index: sources/gui/qml/main.qml =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/gui/qml/main.qml (.../main.qml) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/gui/qml/main.qml (.../main.qml) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -264,8 +264,8 @@ disable : _GuiView.manufactSetup || _GuiView.updateSetup hidden : true // it should be hidden by default since the landing screen changed to init and it does not have the main menu until the POST passes. - titles : [ qsTr("Treatment") , qsTr("Manager") , qsTr("Settings") ] - visibleItems : [ true , false , true ] + titles : [ qsTr("Treatment") , qsTr("Prescriptions") , qsTr("Settings") ] + visibleItems : [ true , true , true ] Component.onCompleted : { _settingsStack.visible = false _managerStack .visible = false Index: sources/gui/qml/pages/MainHome.qml =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/gui/qml/pages/MainHome.qml (.../MainHome.qml) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/gui/qml/pages/MainHome.qml (.../MainHome.qml) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -38,25 +38,33 @@ ImageLogoD { id: _headerLogo } // Definitions + TitleText { id: _titleText + anchors.top: parent.top + anchors.topMargin: 200 //// ----- @LEAHIZED: Move to Variables.qml + width: parent.width + text : vDateTime.greeting + font.pixelSize: 40 //// ----- @LEAHIZED: Move to Variables.qml + + } Column { spacing: Variables.columnSpacing anchors.centerIn: parent - TitleText { id: _titleText - anchors.horizontalCenter: parent.horizontalCenter - width: parent.width - text : vDateTime.greeting - } - // TODO: Removed for phase 1 - // TouchRect { id : _startTreatmentRect - // anchors.horizontalCenter: parent.horizontalCenter - // text.text: qsTr("START TREATMENT") - // onClicked: startTreatment() - // } TouchRect { id : _createTreatmentRect anchors.horizontalCenter: parent.horizontalCenter - text.text: qsTr("CREATE TREATMENT") + text.text: qsTr("Create Treatment") onClicked: createTreatment() + width : 435 //// ----- @LEAHIZED: Move to Variables.qml + height : 92 //// ----- @LEAHIZED: Move to Variables.qml + pixelSize : 30 //// ----- @LEAHIZED: Move to Variables.qml } + TouchRect { id : _startTreatmentRect + anchors.horizontalCenter: parent.horizontalCenter + text.text: qsTr("Start Treatment") + onClicked: startTreatment() + width : 435 //// ----- @LEAHIZED: Move to Variables.qml + height : 92 //// ----- @LEAHIZED: Move to Variables.qml + pixelSize : 30 //// ----- @LEAHIZED: Move to Variables.qml + } } NotificationBarSmall { id: _notification Index: sources/gui/qml/pages/ManagerStack.qml =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/gui/qml/pages/ManagerStack.qml (.../ManagerStack.qml) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/gui/qml/pages/ManagerStack.qml (.../ManagerStack.qml) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -31,7 +31,7 @@ stackView.initialItem : _managerHome ScreenItem { id: _managerHome - PlaceHolderText { screenName: qsTr("Treatment Management") } + PlaceHolderText { screenName: qsTr("Prescriptions") } onVisibleChanged: if (visible) _mainMenu.hidden = true } Index: sources/gui/qml/pages/settings/SettingsHome.qml =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/gui/qml/pages/settings/SettingsHome.qml (.../SettingsHome.qml) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/gui/qml/pages/settings/SettingsHome.qml (.../SettingsHome.qml) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -45,25 +45,6 @@ itemWidth : 325 } - // Test Codes - Row { - spacing : Variables.minVGap2 - anchors { - top : parent.top - left: parent.left - topMargin : 35 - leftMargin : 35 - } - TouchRect { id : _clearAlarmCondition - visible : false // TODO : phase 1 doesn't have this feature (disinfection schedule) - objectName: "_clearAlarmCondition" - width : 300 - height : Variables.logoDiameter - text.text: qsTr("Clear Alarm Condition") - onClicked: _alarmItem.clearAlarm() - } - } - // The Main menu need to hide in case we have any alarm, if not the menu is covered by keyboard but the alram does not. // So what happens is alarm shows up on keyboard but a little higher (main menu height) and it makes the UI not nice. // In the Sub Settings Screens we hide the main menu since those have back button, Index: sources/model/MAbstract.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/MAbstract.h (.../MAbstract.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/MAbstract.h (.../MAbstract.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -67,8 +67,8 @@ enum class Unit_Enum { eUI, - eHD, - eDG, + eTD, + eDD, eDV, }; @@ -88,8 +88,8 @@ static const UnitMap _unitText_make() { static const UnitMap map { {MAbstract::Unit_Enum::eUI, "UI"}, - {MAbstract::Unit_Enum::eHD, "HD"}, - {MAbstract::Unit_Enum::eDG, "DG"}, + {MAbstract::Unit_Enum::eTD, "TD"}, + {MAbstract::Unit_Enum::eDD, "DD"}, {MAbstract::Unit_Enum::eDV, "DV"} }; return map; Index: sources/model/MModel.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/MModel.h (.../MModel.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/MModel.h (.../MModel.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -26,7 +26,6 @@ #include "MAlarmStatusData.h" #include "MAlarmTriggered.h" #include "MAlarmCleared.h" -#include "MAlarmClearedCondition.h" #include "MAlarmActiveList.h" #include "MAdjustHDAlarmVolumeResponse.h" @@ -339,9 +338,6 @@ REGISTER_METATYPE( AlarmStatusData ) \ REGISTER_METATYPE( AlarmTriggeredData ) \ REGISTER_METATYPE( AlarmClearedData ) \ - /* disabled coco begin validated: Manually tested. This model class is a placeholder and there is no use case for this now. - REGISTER_METATYPE( AlarmClearedConditionData ) \ - disabled coco end */ \ REGISTER_METATYPE( DGROPumpData ) \ REGISTER_METATYPE( DGPressuresData ) \ REGISTER_METATYPE( DGDrainPumpData ) \ @@ -392,9 +388,6 @@ REGISTER_METATYPE( AlarmSilenceRequestData ) \ REGISTER_METATYPE( AlarmUserActionRequestData ) \ REGISTER_METATYPE( AlarmActiveListRequestData ) \ - /* disabled coco begin validated: Manually tested. This model class is a placeholder and there is no use case for this now. - REGISTER_METATYPE( AlarmClearedConditionRequestData ) \ - disabled coco end*/ \ REGISTER_METATYPE( AdjustBloodDialysateRequestData ) \ REGISTER_METATYPE( AdjustDurationRequestData ) \ REGISTER_METATYPE( AdjustUltrafiltrationStateRequestData ) \ @@ -524,9 +517,6 @@ ACTION_RECEIVE_BRIDGE_CONNECTION(vSOURCE, AlarmStatusData ) \ ACTION_RECEIVE_BRIDGE_CONNECTION(vSOURCE, AlarmTriggeredData ) \ ACTION_RECEIVE_BRIDGE_CONNECTION(vSOURCE, AlarmClearedData ) \ - /* disabled coco begin validated: Manually tested. This model class is a placeholder and there is no use case for this now. - ACTION_RECEIVE_BRIDGE_CONNECTION(vSOURCE, AlarmClearedConditionData ) \ - disabled coco end */ \ ACTION_RECEIVE_BRIDGE_CONNECTION(vSOURCE, DGROPumpData ) \ ACTION_RECEIVE_BRIDGE_CONNECTION(vSOURCE, DGPressuresData ) \ ACTION_RECEIVE_BRIDGE_CONNECTION(vSOURCE, DGDrainPumpData ) \ @@ -657,10 +647,6 @@ ADJUST_TRANSMT_BRIDGE_CONNECTION(vSOURCE, AdjustHDResetInSrvcRequestData ) \ - /* disabled coco begin validated: Manually tested. This model class is a placeholder and there is no use case for this now. - ADJUST_TRANSMT_BRIDGE_CONNECTION(vSOURCE, AlarmClearedConditionRequestData ) \ - disabled coco end */ \ - //===============================================================================// /*! \def ACTION_RECEIVE_MODEL_BRIDGE_DEFINITIONS @@ -724,9 +710,6 @@ ACTION_RECEIVE_BRIDGE_DEFINITION( AlarmStatusData ) \ ACTION_RECEIVE_BRIDGE_DEFINITION( AlarmTriggeredData ) \ ACTION_RECEIVE_BRIDGE_DEFINITION( AlarmClearedData ) \ - /* disabled coco begin validated: Manually tested. This model class is a placeholder and there is no use case for this now. - ACTION_RECEIVE_BRIDGE_DEFINITION( AlarmClearedConditionData ) \ - disabled coco end */ \ ACTION_RECEIVE_BRIDGE_DEFINITION( DGROPumpData ) \ ACTION_RECEIVE_BRIDGE_DEFINITION( DGPressuresData ) \ ACTION_RECEIVE_BRIDGE_DEFINITION( DGDrainPumpData ) \ @@ -856,9 +839,6 @@ ADJUST_TRANSMT_BRIDGE_DEFINITION( AdjustInstitutionalRequestData ) \ /* HD reset in service mode */ \ ADJUST_TRANSMT_BRIDGE_DEFINITION( AdjustHDResetInSrvcRequestData ) \ - /* disabled coco begin validated: Manually tested. This model class is a placeholder and there is no use case for this now. - ADJUST_TRANSMT_BRIDGE_DEFINITION( AlarmClearedConditionRequestData ) \ - disabled coco end */ \ #define ADJUST_TRANSMT_MODEL_BRIDGE_DEFINITIONS_NOEMIT \ /* Request ----------------------- NoEmit -------------------------- */ \ @@ -920,10 +900,6 @@ /* HD reset in service mode */ \ ADJUST_TRANSMT_BRIDGE_DEFINITION_NOEMIT( AdjustHDResetInSrvcRequestData ) \ - /* disabled coco begin validated: Manually tested. This model class is a placeholder and there is no use case for this now. - ADJUST_TRANSMT_BRIDGE_DEFINITION_NOEMIT( AlarmClearedConditionRequestData ) \ - disabled coco end */ \ - #define ADJUST_TRANSMT_MODEL_BRIDGE_DEFINITIONS_PUBLIC \ /* Request ----------------------- public -------------------------- */ \ /* CONFIRM */ \ @@ -983,9 +959,6 @@ ADJUST_TRANSMT_BRIDGE_DEFINITION_PUBLIC( AdjustInstitutionalRequestData ) \ /* HD reset in service mode */ \ ADJUST_TRANSMT_BRIDGE_DEFINITION_PUBLIC( AdjustHDResetInSrvcRequestData ) \ - /* disabled coco begin validated: Manually tested. This model class is a placeholder and there is no use case for this now. - ADJUST_TRANSMT_BRIDGE_DEFINITION_PUBLIC( AlarmClearedConditionRequestData ) \ - disabled coco end */ \ //== MessageInterpreter Signal Definition =======================================// #define ACTION_RECEIVE_SIGNALS \ @@ -1030,7 +1003,6 @@ ACTION_RECEIVE_SIGNAL( AlarmStatusData ) \ ACTION_RECEIVE_SIGNAL( AlarmTriggeredData ) \ ACTION_RECEIVE_SIGNAL( AlarmClearedData ) \ - ACTION_RECEIVE_SIGNAL( AlarmClearedConditionData ) \ /* Treatment Log */ \ ACTION_RECEIVE_SIGNAL( TreatmentLogAvrgeData ) \ ACTION_RECEIVE_SIGNAL( TreatmentLogAlarmData ) \ Index: sources/model/confirm/MDuetConfirmHDi.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/confirm/MDuetConfirmHDi.h (.../MDuetConfirmHDi.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/confirm/MDuetConfirmHDi.h (.../MDuetConfirmHDi.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -66,7 +66,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eEvent ; } - Unit_Enum unitText () const override { return Unit_Enum::eHD ; } + Unit_Enum unitText () const override { return Unit_Enum::eTD ; } QString infoText () const override { return QString("Confirm" ) ; } struct Data { Index: sources/model/dg/adjustment/settings/MAdjustDGCleaningUsageResponse.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/dg/adjustment/settings/MAdjustDGCleaningUsageResponse.h (.../MAdjustDGCleaningUsageResponse.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/dg/adjustment/settings/MAdjustDGCleaningUsageResponse.h (.../MAdjustDGCleaningUsageResponse.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -80,7 +80,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eEvent ; } - Unit_Enum unitText () const override { return Unit_Enum::eDG ; } + Unit_Enum unitText () const override { return Unit_Enum::eDD ; } QString infoText () const override { return QString("DGCleaningUsage") ; } struct Data { Index: sources/model/dg/adjustment/settings/MAdjustDGDateTimeResponse.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/dg/adjustment/settings/MAdjustDGDateTimeResponse.h (.../MAdjustDGDateTimeResponse.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/dg/adjustment/settings/MAdjustDGDateTimeResponse.h (.../MAdjustDGDateTimeResponse.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -64,7 +64,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eEvent ; } - Unit_Enum unitText () const override { return Unit_Enum::eDG ; } + Unit_Enum unitText () const override { return Unit_Enum::eDD ; } QString infoText () const override { return QString("AdjustDGDateTime") ; } struct Data { Index: sources/model/dg/adjustment/settings/MAdjustDGRequests.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/dg/adjustment/settings/MAdjustDGRequests.h (.../MAdjustDGRequests.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/dg/adjustment/settings/MAdjustDGRequests.h (.../MAdjustDGRequests.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -47,16 +47,14 @@ class MAdjustDGDateTimeReq : public MModel { public: quint32 mEpoch; - // disabled coco begin validated : Has been validated manually. QString toString() { return toString({mEpoch}); } - // disabled coco end static QString toString(const QVariantList &vParameters) { return MModel::toString("AdjustDGDateTime", vParameters); } - static Can::Can_Id canid () { return Can::Can_Id::eChlid_UI_DG; } + static Can::Can_Id canid () { return Can::Can_Id::eChlid_UI_DD; } }; /*! @@ -81,7 +79,7 @@ return MModel::toString("DGCleaningUsage", vParameters); } - static Can::Can_Id canid () { return Can::Can_Id::eChlid_UI_DG; } + static Can::Can_Id canid () { return Can::Can_Id::eChlid_UI_DD; } }; } Index: sources/model/dg/adjustment/settings/MAdjustDGSerialNumberResponse.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/dg/adjustment/settings/MAdjustDGSerialNumberResponse.h (.../MAdjustDGSerialNumberResponse.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/dg/adjustment/settings/MAdjustDGSerialNumberResponse.h (.../MAdjustDGSerialNumberResponse.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -58,7 +58,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eEvent; } - Unit_Enum unitText () const override { return Unit_Enum::eDG ; } + Unit_Enum unitText () const override { return Unit_Enum::eDD ; } QString infoText () const override { return QString("Serial"); } struct Data { Index: sources/model/dg/adjustment/settings/MAdjustDGServiceDatesResponse.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/dg/adjustment/settings/MAdjustDGServiceDatesResponse.h (.../MAdjustDGServiceDatesResponse.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/dg/adjustment/settings/MAdjustDGServiceDatesResponse.h (.../MAdjustDGServiceDatesResponse.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -63,7 +63,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eEvent ; } - Unit_Enum unitText () const override { return Unit_Enum::eDG ; } + Unit_Enum unitText () const override { return Unit_Enum::eDD ; } QString infoText () const override { return QString("ServiceDates") ; } struct Data { Index: sources/model/dg/adjustment/settings/MAdjustDGVersionsResponse.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/dg/adjustment/settings/MAdjustDGVersionsResponse.h (.../MAdjustDGVersionsResponse.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/dg/adjustment/settings/MAdjustDGVersionsResponse.h (.../MAdjustDGVersionsResponse.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -79,7 +79,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eEvent ; } - Unit_Enum unitText () const override { return Unit_Enum::eDG ; } + Unit_Enum unitText () const override { return Unit_Enum::eDD ; } QString infoText () const override { return QString("VersionRsp") ; } struct Data { Index: sources/model/dg/adjustment/settings/MDuetRoWaterDG.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/dg/adjustment/settings/MDuetRoWaterDG.h (.../MDuetRoWaterDG.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/dg/adjustment/settings/MDuetRoWaterDG.h (.../MDuetRoWaterDG.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -60,7 +60,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eEvent ; } - Unit_Enum unitText () const override { return Unit_Enum::eDG ; } + Unit_Enum unitText () const override { return Unit_Enum::eDD ; } QString infoText () const override { return QString("QueryRoWater") ; } struct Data { @@ -111,7 +111,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eEvent ; } - Unit_Enum unitText () const override { return Unit_Enum::eDG ; } + Unit_Enum unitText () const override { return Unit_Enum::eDD ; } QString infoText () const override { return QString("AdjustRoWater") ; } struct Data { @@ -158,7 +158,7 @@ return MModel::toString("AdjustRoWater", vParameters); } - static Can::Can_Id canid () { return Can::Can_Id::eChlid_UI_DG; } + static Can::Can_Id canid () { return Can::Can_Id::eChlid_UI_DD; } }; } Index: sources/model/dg/data/MDGAccelerometerData.cpp =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/dg/data/MDGAccelerometerData.cpp (.../MDGAccelerometerData.cpp) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/dg/data/MDGAccelerometerData.cpp (.../MDGAccelerometerData.cpp) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -14,10 +14,6 @@ */ #include "MDGAccelerometerData.h" -// disabled coco begin validated: -// FIXME: this model was only for the Diagnostic use, and has been removed, -// Should be removed from the UI Software if not being used anymore - using namespace Model; QVariantList MDGAccelerometer::parameters() const { @@ -45,12 +41,12 @@ if ( ! GetValue(vByteArray, index, _data.mXTilt )) goto lError; if ( ! GetValue(vByteArray, index, _data.mYTilt )) goto lError; if ( ! GetValue(vByteArray, index, _data.mZTilt )) goto lError; - + return true; lError: if(vIndex) { *vIndex = index; } - + return false; } @@ -67,5 +63,3 @@ data.mZTilt = _data.mZTilt .value; return data; } - -// disabled coco end Index: sources/model/dg/data/MDGAccelerometerData.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/dg/data/MDGAccelerometerData.h (.../MDGAccelerometerData.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/dg/data/MDGAccelerometerData.h (.../MDGAccelerometerData.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -25,10 +25,6 @@ // forward declarations class tst_models; -// disabled coco begin validated: -// FIXME: this model was only for the Diagnostic use, and has been removed, -// Should be removed from the UI Software if not being used anymore - namespace Model { /*! @@ -84,7 +80,7 @@ public: Type_Enum typeText() const override { return Type_Enum::eDatum; } - Unit_Enum unitText() const override { return Unit_Enum::eDG ; } + Unit_Enum unitText() const override { return Unit_Enum::eDD ; } QString infoText() const override { return QString("Accel") ; } struct Data { @@ -108,5 +104,3 @@ } typedef Model::MDGAccelerometer::Data DGAccelerometerData; - -// disabled coco end Index: sources/model/dg/data/MDGConductivityData.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/dg/data/MDGConductivityData.h (.../MDGConductivityData.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/dg/data/MDGConductivityData.h (.../MDGConductivityData.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -86,7 +86,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eDatum ; } - Unit_Enum unitText () const override { return Unit_Enum::eDG ; } + Unit_Enum unitText () const override { return Unit_Enum::eDD ; } QString infoText () const override { return QString("Conductivity"); } struct Data{ Index: sources/model/dg/data/MDGDebugText.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/dg/data/MDGDebugText.h (.../MDGDebugText.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/dg/data/MDGDebugText.h (.../MDGDebugText.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -59,7 +59,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eDatum; } - Unit_Enum unitText () const override { return Unit_Enum::eDG ; } + Unit_Enum unitText () const override { return Unit_Enum::eDD ; } QString infoText () const override { return QString("Debug") ; } struct Data { Index: sources/model/dg/data/MDGDrainPumpData.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/dg/data/MDGDrainPumpData.h (.../MDGDrainPumpData.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/dg/data/MDGDrainPumpData.h (.../MDGDrainPumpData.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -77,7 +77,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eDatum ; } - Unit_Enum unitText () const override { return Unit_Enum::eDG ; } + Unit_Enum unitText () const override { return Unit_Enum::eDD ; } QString infoText () const override { return QString("DrainPump"); } struct Data { Index: sources/model/dg/data/MDGGeneralEvent.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/dg/data/MDGGeneralEvent.h (.../MDGGeneralEvent.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/dg/data/MDGGeneralEvent.h (.../MDGGeneralEvent.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -59,7 +59,7 @@ public: Type_Enum typeText() const override { return Type_Enum::eEvent ; } - Unit_Enum unitText() const override { return Unit_Enum::eDG ; } + Unit_Enum unitText() const override { return Unit_Enum::eDD ; } QString infoText() const override { return QString("General" ) ; } struct Data { Index: sources/model/dg/data/MDGHeatersData.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/dg/data/MDGHeatersData.h (.../MDGHeatersData.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/dg/data/MDGHeatersData.h (.../MDGHeatersData.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -86,7 +86,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eDatum ; } - Unit_Enum unitText () const override { return Unit_Enum::eDG ; } + Unit_Enum unitText () const override { return Unit_Enum::eDD ; } QString infoText () const override { return QString("Heaters"); } struct Data { Index: sources/model/dg/data/MDGLoadCellReadingsData.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/dg/data/MDGLoadCellReadingsData.h (.../MDGLoadCellReadingsData.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/dg/data/MDGLoadCellReadingsData.h (.../MDGLoadCellReadingsData.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -68,7 +68,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eDatum ; } - Unit_Enum unitText () const override { return Unit_Enum::eDG ; } + Unit_Enum unitText () const override { return Unit_Enum::eDD ; } QString infoText () const override { return QString("LoadCell"); } struct Data { Index: sources/model/dg/data/MDGOperationModeData.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/dg/data/MDGOperationModeData.h (.../MDGOperationModeData.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/dg/data/MDGOperationModeData.h (.../MDGOperationModeData.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -64,7 +64,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eDatum; } - Unit_Enum unitText () const override { return Unit_Enum::eDG ; } + Unit_Enum unitText () const override { return Unit_Enum::eDD ; } QString infoText () const override { return QString("OpMode"); } struct Data { Index: sources/model/dg/data/MDGPressuresData.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/dg/data/MDGPressuresData.h (.../MDGPressuresData.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/dg/data/MDGPressuresData.h (.../MDGPressuresData.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -70,7 +70,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eDatum ; } - Unit_Enum unitText () const override { return Unit_Enum::eDG ; } + Unit_Enum unitText () const override { return Unit_Enum::eDD ; } QString infoText () const override { return QString("Pressures"); } struct Data { Index: sources/model/dg/data/MDGROPumpData.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/dg/data/MDGROPumpData.h (.../MDGROPumpData.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/dg/data/MDGROPumpData.h (.../MDGROPumpData.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -72,7 +72,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eDatum; } - Unit_Enum unitText () const override { return Unit_Enum::eDG ; } + Unit_Enum unitText () const override { return Unit_Enum::eDD ; } QString infoText () const override { return QString("ROPump"); } struct Data { Index: sources/model/dg/data/MDGReservoirData.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/dg/data/MDGReservoirData.h (.../MDGReservoirData.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/dg/data/MDGReservoirData.h (.../MDGReservoirData.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -83,7 +83,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eDatum ; } - Unit_Enum unitText () const override { return Unit_Enum::eDG ; } + Unit_Enum unitText () const override { return Unit_Enum::eDD ; } QString infoText () const override { return QString("Reservoir"); } struct Data { Index: sources/model/dg/data/MDGTemperaturesData.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/dg/data/MDGTemperaturesData.h (.../MDGTemperaturesData.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/dg/data/MDGTemperaturesData.h (.../MDGTemperaturesData.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -110,7 +110,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eDatum ; } - Unit_Enum unitText () const override { return Unit_Enum::eDG ; } + Unit_Enum unitText () const override { return Unit_Enum::eDD ; } QString infoText () const override { return QString("Temperatures"); } struct Data { Index: sources/model/dg/data/MDGValvesStatesData.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/dg/data/MDGValvesStatesData.h (.../MDGValvesStatesData.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/dg/data/MDGValvesStatesData.h (.../MDGValvesStatesData.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -112,7 +112,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eDatum ; } - Unit_Enum unitText () const override { return Unit_Enum::eDG ; } + Unit_Enum unitText () const override { return Unit_Enum::eDD ; } QString infoText () const override { return QString("ValvesStates"); } struct Data { Index: sources/model/dg/data/post/MDGPostFinalResultData.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/dg/data/post/MDGPostFinalResultData.h (.../MDGPostFinalResultData.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/dg/data/post/MDGPostFinalResultData.h (.../MDGPostFinalResultData.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -64,7 +64,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eDatum ;} - Unit_Enum unitText () const override { return Unit_Enum::eDG ;} + Unit_Enum unitText () const override { return Unit_Enum::eDD ;} QString infoText () const override { return QString("POSTDone") ;} struct Data { Index: sources/model/dg/data/post/MDGPostSingleResultData.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/dg/data/post/MDGPostSingleResultData.h (.../MDGPostSingleResultData.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/dg/data/post/MDGPostSingleResultData.h (.../MDGPostSingleResultData.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -66,7 +66,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eDatum ;} - Unit_Enum unitText () const override { return Unit_Enum::eDG ;} + Unit_Enum unitText () const override { return Unit_Enum::eDD ;} QString infoText () const override { return QString("POSTItem") ;} struct Data { Index: sources/model/dg/data/pretreatment/MDGFilterFlushData.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/dg/data/pretreatment/MDGFilterFlushData.h (.../MDGFilterFlushData.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/dg/data/pretreatment/MDGFilterFlushData.h (.../MDGFilterFlushData.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -64,7 +64,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eDatum ; } - Unit_Enum unitText () const override { return Unit_Enum::eDG ; } + Unit_Enum unitText () const override { return Unit_Enum::eDD ; } QString infoText () const override { return QString("FilterFlush"); } struct Data { Index: sources/model/hd/adjustment/MAdjustPowerOff.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/adjustment/MAdjustPowerOff.h (.../MAdjustPowerOff.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/adjustment/MAdjustPowerOff.h (.../MAdjustPowerOff.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -48,7 +48,7 @@ class MPowerOff : public MAbstract { public: Type_Enum typeText () const override { return Type_Enum::eEvent; } - Unit_Enum unitText () const override { return Unit_Enum::eHD ; } + Unit_Enum unitText () const override { return Unit_Enum::eTD ; } QString infoText () const override { return QString("PowerOff"); } QVariantList parameters() const override; Index: sources/model/hd/adjustment/MAdjustRequestsBase.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/adjustment/MAdjustRequestsBase.h (.../MAdjustRequestsBase.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/adjustment/MAdjustRequestsBase.h (.../MAdjustRequestsBase.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -69,7 +69,7 @@ * it can be modified by the specific message which inherits the MModel. * \return Can::Can_Id */ - static Can::Can_Id canid () { return Can::Can_Id::eChlid_UI_HD; } + static Can::Can_Id canid () { return Can::Can_Id::eChlid_UI_TD; } }; Index: sources/model/hd/adjustment/disinfect/MDisinfectAdjustModeResponse.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/adjustment/disinfect/MDisinfectAdjustModeResponse.h (.../MDisinfectAdjustModeResponse.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/adjustment/disinfect/MDisinfectAdjustModeResponse.h (.../MDisinfectAdjustModeResponse.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -65,7 +65,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eEvent ; } - Unit_Enum unitText () const override { return Unit_Enum::eHD ; } + Unit_Enum unitText () const override { return Unit_Enum::eTD ; } QString infoText () const override { return QString("DisinfectMode" ) ; } struct Data { Index: sources/model/hd/adjustment/disinfect/MDisinfectAdjustStartRequests.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/adjustment/disinfect/MDisinfectAdjustStartRequests.h (.../MDisinfectAdjustStartRequests.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/adjustment/disinfect/MDisinfectAdjustStartRequests.h (.../MDisinfectAdjustStartRequests.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -51,12 +51,10 @@ public: GuiDisinfectDGStates mState = GuiDisinfectDGStates::DD_DISINFECT_NOT_RUNNING_STATE; - // disabled coco begin validated : Has been validated manually. - // This object is used statically for now, kept the logic for later usage. QString toString() { return toString({mState}); } - // disabled coco end + static QString toString(const QVariantList &vParameters) { return MModel::toString("DisinfectStart", vParameters); } Index: sources/model/hd/adjustment/disinfect/MDisinfectAdjustStartResponse.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/adjustment/disinfect/MDisinfectAdjustStartResponse.h (.../MDisinfectAdjustStartResponse.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/adjustment/disinfect/MDisinfectAdjustStartResponse.h (.../MDisinfectAdjustStartResponse.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -65,7 +65,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eEvent ; } - Unit_Enum unitText () const override { return Unit_Enum::eHD ; } + Unit_Enum unitText () const override { return Unit_Enum::eTD ; } QString infoText () const override { return QString("DisinfectStart" ) ; } struct Data { Index: sources/model/hd/adjustment/posttreatment/MPostTreatmentAdjustDisposablesRemovalConfirmResponse.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/adjustment/posttreatment/MPostTreatmentAdjustDisposablesRemovalConfirmResponse.h (.../MPostTreatmentAdjustDisposablesRemovalConfirmResponse.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/adjustment/posttreatment/MPostTreatmentAdjustDisposablesRemovalConfirmResponse.h (.../MPostTreatmentAdjustDisposablesRemovalConfirmResponse.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -66,7 +66,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eEvent ; } - Unit_Enum unitText () const override { return Unit_Enum::eHD ; } + Unit_Enum unitText () const override { return Unit_Enum::eTD ; } QString infoText () const override { return QString("AdjustDisposablesRemovalConfirm") ; } struct Data { Index: sources/model/hd/adjustment/posttreatment/MPostTreatmentAdjustPatientDisconnectionConfirmResponse.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/adjustment/posttreatment/MPostTreatmentAdjustPatientDisconnectionConfirmResponse.h (.../MPostTreatmentAdjustPatientDisconnectionConfirmResponse.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/adjustment/posttreatment/MPostTreatmentAdjustPatientDisconnectionConfirmResponse.h (.../MPostTreatmentAdjustPatientDisconnectionConfirmResponse.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -66,7 +66,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eEvent ; } - Unit_Enum unitText () const override { return Unit_Enum::eHD ; } + Unit_Enum unitText () const override { return Unit_Enum::eTD ; } QString infoText () const override { return QString("AdjustPatientDisconnectionConfirm") ; } struct Data { Index: sources/model/hd/adjustment/posttreatment/MPostTreatmentAdjustTreatmentLogResponse.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/adjustment/posttreatment/MPostTreatmentAdjustTreatmentLogResponse.h (.../MPostTreatmentAdjustTreatmentLogResponse.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/adjustment/posttreatment/MPostTreatmentAdjustTreatmentLogResponse.h (.../MPostTreatmentAdjustTreatmentLogResponse.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -134,7 +134,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eEvent ; } - Unit_Enum unitText () const override { return Unit_Enum::eHD ; } + Unit_Enum unitText () const override { return Unit_Enum::eTD ; } QString infoText () const override { return QString("AdjustTreatmentLog") ; } struct Data { Index: sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustDisposablesConfirmResponse.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustDisposablesConfirmResponse.h (.../MPreTreatmentAdjustDisposablesConfirmResponse.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustDisposablesConfirmResponse.h (.../MPreTreatmentAdjustDisposablesConfirmResponse.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -66,7 +66,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eEvent ; } - Unit_Enum unitText () const override { return Unit_Enum::eHD ; } + Unit_Enum unitText () const override { return Unit_Enum::eTD ; } QString infoText () const override { return QString("AdjustDisposablesConfirm") ; } struct Data { Index: sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustDisposablesPrimeResponse.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustDisposablesPrimeResponse.h (.../MPreTreatmentAdjustDisposablesPrimeResponse.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustDisposablesPrimeResponse.h (.../MPreTreatmentAdjustDisposablesPrimeResponse.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -66,7 +66,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eEvent ; } - Unit_Enum unitText () const override { return Unit_Enum::eHD ; } + Unit_Enum unitText () const override { return Unit_Enum::eTD ; } QString infoText () const override { return QString("AdjustDisposablesPrime") ; } struct Data { Index: sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustInitTreatmentResponse.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustInitTreatmentResponse.h (.../MPreTreatmentAdjustInitTreatmentResponse.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustInitTreatmentResponse.h (.../MPreTreatmentAdjustInitTreatmentResponse.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -64,7 +64,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eEvent ; } - Unit_Enum unitText () const override { return Unit_Enum::eHD ; } + Unit_Enum unitText () const override { return Unit_Enum::eTD ; } QString infoText () const override { return QString("InitTreatment" ); } struct Data { Index: sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustParametersValidationResponse.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustParametersValidationResponse.h (.../MPreTreatmentAdjustParametersValidationResponse.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustParametersValidationResponse.h (.../MPreTreatmentAdjustParametersValidationResponse.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -94,7 +94,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eEvent; } - Unit_Enum unitText () const override { return Unit_Enum::eHD ; } + Unit_Enum unitText () const override { return Unit_Enum::eTD ; } QString infoText () const override { return QString("ParametersValidation"); } struct Data { Index: sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustPatientConnectionBeginResponse.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustPatientConnectionBeginResponse.h (.../MPreTreatmentAdjustPatientConnectionBeginResponse.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustPatientConnectionBeginResponse.h (.../MPreTreatmentAdjustPatientConnectionBeginResponse.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -66,7 +66,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eEvent ; } - Unit_Enum unitText () const override { return Unit_Enum::eHD ; } + Unit_Enum unitText () const override { return Unit_Enum::eTD ; } QString infoText () const override { return QString("AdjustPatientConnectionBegin") ; } struct Data { Index: sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustPatientConnectionConfirmResponse.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustPatientConnectionConfirmResponse.h (.../MPreTreatmentAdjustPatientConnectionConfirmResponse.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustPatientConnectionConfirmResponse.h (.../MPreTreatmentAdjustPatientConnectionConfirmResponse.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -66,7 +66,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eEvent ; } - Unit_Enum unitText () const override { return Unit_Enum::eHD ; } + Unit_Enum unitText () const override { return Unit_Enum::eTD ; } QString infoText () const override { return QString("AdjustPatientConnectionConfirm") ; } struct Data { Index: sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustRequests.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustRequests.h (.../MPreTreatmentAdjustRequests.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustRequests.h (.../MPreTreatmentAdjustRequests.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -54,12 +54,9 @@ eInitiate = 1, }; Options requestedState = eUnknown; - // disabled coco begin validated : Has been validated manually. - // This object is used statically for now, kept the logic for later usage. QString toString() { return toString({requestedState}); } - // disabled coco end static QString toString(const QVariantList &vParameters) { return MModel::toString("InitTreatment", vParameters); } @@ -115,8 +112,6 @@ float mHeparinBolusVolume = 0; // mL float mDialysateTemp = 0; // Celsius - // disabled coco begin validated : Has been validated manually. - // This object is used statically for now, kept the logic for later usage. QString toString() { return toString({ mBloodFlowRate , @@ -138,7 +133,6 @@ mDialysateTemp , }); } - // disabled coco end static QString toString(const QVariantList &vParameters) { return MModel::toString("ValidateParameters", vParameters); } @@ -164,12 +158,10 @@ eConfirm = 1 }; Options requestedState = eConfirm; - // disabled coco begin validated : Has been validated manually. - // This object is used statically for now, kept the logic for later usage. QString toString() { return toString({requestedState}); } - // disabled coco end + static QString toString(const QVariantList &vParameters) { return MModel::toString("ConfirmParameters", vParameters); } @@ -195,12 +187,10 @@ eStart = 1, }; Options requestedState = eStop; - // disabled coco begin validated : Has been validated manually. - // This object is used statically for now, kept the logic for later usage. QString toString() { return toString({requestedState}); } - // disabled coco end + static QString toString(const QVariantList &vParameters) { return MModel::toString("WaterSample", vParameters); } @@ -227,12 +217,10 @@ ePassed = 1, }; Options requestedState = eUnknown; - // disabled coco begin validated : Has been validated manually. - // This object is used statically for now, kept the logic for later usage. QString toString() { return toString({requestedState}); } - // disabled coco end + static QString toString(const QVariantList &vParameters) { return MModel::toString("WaterSampleResult", vParameters); } @@ -253,12 +241,10 @@ */ class MAdjustConsumablesConfirmReq : public MModel { public: - // disabled coco begin validated : Has been validated manually. - // This object is used statically for now, kept the logic for later usage. QString toString() { return toString({}); } - // disabled coco end + static QString toString(const QVariantList &vParameters) { return MModel::toString("ConsumablesConfirm", vParameters); } @@ -279,12 +265,10 @@ */ class MAdjustDisposablesConfirmReq : public MModel { public: - // disabled coco begin validated : Has been validated manually. - // This object is used statically for now, kept the logic for later usage. QString toString() { return toString({}); } - // disabled coco end + static QString toString(const QVariantList &vParameters) { return MModel::toString("DisposablesConfirm", vParameters); } @@ -305,12 +289,10 @@ */ class MAdjustDisposablesPrimeReq : public MModel { public: - // disabled coco begin validated : Has been validated manually. - // This object is used statically for now, kept the logic for later usage. QString toString() { return toString({}); } - // disabled coco end + static QString toString(const QVariantList &vParameters) { return MModel::toString("DisposablesPrime", vParameters); } @@ -331,12 +313,10 @@ */ class MAdjustPatientConnectionBeginReq : public MModel { public: - // disabled coco begin validated : Has been validated manually. - // This object is used statically for now, kept the logic for later usage. QString toString() { return toString({}); } - // disabled coco end + static QString toString(const QVariantList &vParameters) { return MModel::toString("PatientConnectionBegin", vParameters); } @@ -358,12 +338,10 @@ class MAdjustUltrafiltrationInitReq : public MModel { public: float volume = 0; - // disabled coco begin validated : Has been validated manually. - // This object is used statically for now, kept the logic for later usage. QString toString() { return toString({volume}); } - // disabled coco end + static QString toString(const QVariantList &vParameters) { return MModel::toString("AdjustUFInit", vParameters); } @@ -384,12 +362,10 @@ */ class MAdjustPatientConnectionConfirmReq : public MModel { public: - // disabled coco begin validated : Has been validated manually. - // This object is used statically for now, kept the logic for later usage. QString toString() { return toString({}); } - // disabled coco end + static QString toString(const QVariantList &vParameters) { return MModel::toString("PatientConnectionConfirm", vParameters); } @@ -410,12 +386,10 @@ */ class MAdjustStartTreatmentReq : public MModel { public: - // disabled coco begin validated : Has been validated manually. - // This object is used statically for now, kept the logic for later usage. QString toString() { return toString({}); } - // disabled coco end + static QString toString(const QVariantList &vParameters) { return MModel::toString("StartTreatment", vParameters); } Index: sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustStartTreatmentResponse.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustStartTreatmentResponse.h (.../MPreTreatmentAdjustStartTreatmentResponse.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustStartTreatmentResponse.h (.../MPreTreatmentAdjustStartTreatmentResponse.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -64,7 +64,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eEvent ; } - Unit_Enum unitText () const override { return Unit_Enum::eHD ; } + Unit_Enum unitText () const override { return Unit_Enum::eTD ; } QString infoText () const override { return QString("AdjustStartTreatment") ; } struct Data { Index: sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustUltrafiltrationInitResponse.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustUltrafiltrationInitResponse.h (.../MPreTreatmentAdjustUltrafiltrationInitResponse.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustUltrafiltrationInitResponse.h (.../MPreTreatmentAdjustUltrafiltrationInitResponse.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -66,7 +66,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eEvent ; } - Unit_Enum unitText () const override { return Unit_Enum::eHD ; } + Unit_Enum unitText () const override { return Unit_Enum::eTD ; } QString infoText () const override { return QString("AdjustUFInit"); } struct Data { Index: sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustWaterSampleResponse.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustWaterSampleResponse.h (.../MPreTreatmentAdjustWaterSampleResponse.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustWaterSampleResponse.h (.../MPreTreatmentAdjustWaterSampleResponse.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -66,7 +66,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eEvent ; } - Unit_Enum unitText () const override { return Unit_Enum::eHD ; } + Unit_Enum unitText () const override { return Unit_Enum::eTD ; } QString infoText () const override { return QString("AdjustWaterSample") ; } struct Data { Index: sources/model/hd/adjustment/settings/MAdjustHDAlarmVolumeResponse.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/adjustment/settings/MAdjustHDAlarmVolumeResponse.h (.../MAdjustHDAlarmVolumeResponse.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/adjustment/settings/MAdjustHDAlarmVolumeResponse.h (.../MAdjustHDAlarmVolumeResponse.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -64,7 +64,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eEvent ; } - Unit_Enum unitText () const override { return Unit_Enum::eHD ; } + Unit_Enum unitText () const override { return Unit_Enum::eTD ; } QString infoText () const override { return QString("AdjustHDAlarmVolume") ; } struct Data { Index: sources/model/hd/adjustment/settings/MAdjustHDDateTimeResponse.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/adjustment/settings/MAdjustHDDateTimeResponse.h (.../MAdjustHDDateTimeResponse.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/adjustment/settings/MAdjustHDDateTimeResponse.h (.../MAdjustHDDateTimeResponse.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -64,7 +64,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eEvent ; } - Unit_Enum unitText () const override { return Unit_Enum::eHD ; } + Unit_Enum unitText () const override { return Unit_Enum::eTD ; } QString infoText () const override { return QString("AdjustHDDateTime") ; } struct Data { Index: sources/model/hd/adjustment/settings/MAdjustHDInstitutionalRecordResponse.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/adjustment/settings/MAdjustHDInstitutionalRecordResponse.h (.../MAdjustHDInstitutionalRecordResponse.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/adjustment/settings/MAdjustHDInstitutionalRecordResponse.h (.../MAdjustHDInstitutionalRecordResponse.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -113,7 +113,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eEvent ; } - Unit_Enum unitText () const override { return Unit_Enum::eHD ; } + Unit_Enum unitText () const override { return Unit_Enum::eTD ; } QString infoText () const override { return QString("InstitutionalRecord") ; } struct Data { Index: sources/model/hd/adjustment/settings/MAdjustHDRequests.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/adjustment/settings/MAdjustHDRequests.h (.../MAdjustHDRequests.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/adjustment/settings/MAdjustHDRequests.h (.../MAdjustHDRequests.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -50,11 +50,9 @@ class MAdjustHDDateTimeReq : public MModel { public: quint32 mEpoch; - // disabled coco begin validated : Has been validated manually. QString toString() { return toString({mEpoch}); } - // disabled coco end static QString toString(const QVariantList &vParameters) { return MModel::toString("AdjustHDDateTime", vParameters); } @@ -91,12 +89,9 @@ _volume = vVolume; } - // disabled coco begin validated : Has been validated manually. - // This object is used statically for now, kept the logic for later usage. QString toString() { return toString( { _volume } ); } - // disabled coco end static QString toString(const QVariantList &vParameters) { return MModel::toString("AdjustHDAlarmVolume", vParameters); } @@ -128,8 +123,6 @@ quint16 ver_revis = QString("%1").arg(VER_REVIS ).toUInt(); quint32 ver_comp = QString("%1").arg(SW_COMPATIBILITY_REV).toUInt(); - // disabled coco begin validated : Has been validated manually. - // This object is used statically for now, kept the logic for later usage. QString toString() { return toString({ ver_major , ver_minor , @@ -138,7 +131,6 @@ ver_comp , }); } - // disabled coco end static QString toString(const QVariantList &vParameters) { return MModel::toString("POSTInfReq", vParameters); } @@ -169,7 +161,7 @@ static QString toString(const QVariantList &vParameters) { return MModel::toString("VersionRsp", vParameters); } - static Can::Can_Id canid () { return Can::Can_Id::eChlid_UI_HD; } + static Can::Can_Id canid () { return Can::Can_Id::eChlid_UI_TD; } }; @@ -189,12 +181,9 @@ class MAdjustServiceDatesReq : public MModel { public: - // disabled coco begin validated : Has been validated manually. - // This object is used statically for now, kept the logic for later usage. QString toString() { return toString({}); } - // disabled coco end static QString toString(const QVariantList &vParameters) { return MModel::toString("ServiceDates", vParameters); } @@ -219,17 +208,14 @@ class MAdjustServiceModeReq : public MModel { public: - // disabled coco begin validated : Has been validated manually. - // This object is used statically for now, kept the logic for later usage. QString toString() { return toString({}); } - // disabled coco end static QString toString(const QVariantList &vParameters) { return MModel::toString("ServiceMode", vParameters); } - static Can::Can_Id canid () { return Can::eChlid_UI_HD; } + static Can::Can_Id canid () { return Can::eChlid_UI_TD; } }; @@ -251,12 +237,9 @@ quint32 mResult; - // disabled coco begin validated : Has been validated manually. - // This object is used statically for now, kept the logic for later usage. QString toString() { return toString( { mResult } ); } - // disabled coco end static QString toString(const QVariantList &vParameters) { return MModel::toString("UIPOSTDone", vParameters); } @@ -278,12 +261,9 @@ class MHDUsageInfoReq : public MModel { public: - // disabled coco begin validated : Has been validated manually. - // This object is used statically for now, kept the logic for later usage. QString toString() { return toString({}); } - // disabled coco end static QString toString(const QVariantList &vParameters) { return MModel::toString("HDUsageInfoReq", vParameters); } @@ -307,17 +287,14 @@ class MAdjustInstitutionalRecordReq : public MModel { public: - // disabled coco begin validated : Has been validated manually. - // This object is used statically for now, kept the logic for later usage. QString toString() { return toString({}); } - // disabled coco end static QString toString(const QVariantList &vParameters) { return MModel::toString("InstitutionalRecord", vParameters); } - static Can::Can_Id canid () { return Can::eChlid_UI_HD; } + static Can::Can_Id canid () { return Can::eChlid_UI_TD; } }; /*! @@ -336,17 +313,14 @@ class MAdjustHDResetInSrvceModeReq : public MModel { public: - // disabled coco begin validated : Has been validated manually. - // This object is used statically for now, kept the logic for later usage. QString toString() { return toString({}); } - // disabled coco end static QString toString(const QVariantList &vParameters) { return MModel::toString("HDResetInServiceMode", vParameters); } - static Can::Can_Id canid () { return Can::eChlid_UI_HD; } + static Can::Can_Id canid () { return Can::eChlid_UI_TD; } }; } Index: sources/model/hd/adjustment/settings/MAdjustHDSerialNumberResponse.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/adjustment/settings/MAdjustHDSerialNumberResponse.h (.../MAdjustHDSerialNumberResponse.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/adjustment/settings/MAdjustHDSerialNumberResponse.h (.../MAdjustHDSerialNumberResponse.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -58,7 +58,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eEvent; } - Unit_Enum unitText () const override { return Unit_Enum::eHD ; } + Unit_Enum unitText () const override { return Unit_Enum::eTD ; } QString infoText () const override { return QString("Serial"); } struct Data { Index: sources/model/hd/adjustment/settings/MAdjustHDServiceDatesResponse.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/adjustment/settings/MAdjustHDServiceDatesResponse.h (.../MAdjustHDServiceDatesResponse.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/adjustment/settings/MAdjustHDServiceDatesResponse.h (.../MAdjustHDServiceDatesResponse.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -63,7 +63,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eEvent ; } - Unit_Enum unitText () const override { return Unit_Enum::eHD ; } + Unit_Enum unitText () const override { return Unit_Enum::eTD ; } QString infoText () const override { return QString("ServiceDates") ; } struct Data { Index: sources/model/hd/adjustment/settings/MAdjustHDServiceModeResponse.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/adjustment/settings/MAdjustHDServiceModeResponse.h (.../MAdjustHDServiceModeResponse.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/adjustment/settings/MAdjustHDServiceModeResponse.h (.../MAdjustHDServiceModeResponse.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -63,7 +63,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eEvent ; } - Unit_Enum unitText () const override { return Unit_Enum::eHD ; } + Unit_Enum unitText () const override { return Unit_Enum::eTD ; } QString infoText () const override { return QString("ServiceMode") ; } struct Data { Index: sources/model/hd/adjustment/settings/MAdjustHDVersionsRequest.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/adjustment/settings/MAdjustHDVersionsRequest.h (.../MAdjustHDVersionsRequest.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/adjustment/settings/MAdjustHDVersionsRequest.h (.../MAdjustHDVersionsRequest.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -61,7 +61,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eEvent ; } - Unit_Enum unitText () const override { return Unit_Enum::eHD ; } + Unit_Enum unitText () const override { return Unit_Enum::eTD ; } QString infoText () const override { return QString("VersionReq") ; } struct Data { Index: sources/model/hd/adjustment/settings/MAdjustHDVersionsResponse.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/adjustment/settings/MAdjustHDVersionsResponse.h (.../MAdjustHDVersionsResponse.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/adjustment/settings/MAdjustHDVersionsResponse.h (.../MAdjustHDVersionsResponse.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -79,7 +79,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eEvent ; } - Unit_Enum unitText () const override { return Unit_Enum::eHD ; } + Unit_Enum unitText () const override { return Unit_Enum::eTD ; } QString infoText () const override { return QString("VersionRsp") ; } struct Data { Index: sources/model/hd/adjustment/treatment/MTreatmentAdjustBloodDialysateResponse.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/adjustment/treatment/MTreatmentAdjustBloodDialysateResponse.h (.../MTreatmentAdjustBloodDialysateResponse.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/adjustment/treatment/MTreatmentAdjustBloodDialysateResponse.h (.../MTreatmentAdjustBloodDialysateResponse.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -68,7 +68,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eEvent ; } - Unit_Enum unitText () const override { return Unit_Enum::eHD ; } + Unit_Enum unitText () const override { return Unit_Enum::eTD ; } QString infoText () const override { return QString("AdjustBloodDialysate"); } struct Data { Index: sources/model/hd/adjustment/treatment/MTreatmentAdjustDurationResponse.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/adjustment/treatment/MTreatmentAdjustDurationResponse.h (.../MTreatmentAdjustDurationResponse.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/adjustment/treatment/MTreatmentAdjustDurationResponse.h (.../MTreatmentAdjustDurationResponse.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -69,7 +69,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eEvent ; } - Unit_Enum unitText () const override { return Unit_Enum::eHD ; } + Unit_Enum unitText () const override { return Unit_Enum::eTD ; } QString infoText () const override { return QString("AdjustDuration"); } struct Data { Index: sources/model/hd/adjustment/treatment/MTreatmentAdjustEndResponse.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/adjustment/treatment/MTreatmentAdjustEndResponse.h (.../MTreatmentAdjustEndResponse.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/adjustment/treatment/MTreatmentAdjustEndResponse.h (.../MTreatmentAdjustEndResponse.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -66,7 +66,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eEvent ; } - Unit_Enum unitText () const override { return Unit_Enum::eHD ; } + Unit_Enum unitText () const override { return Unit_Enum::eTD ; } QString infoText () const override { return QString("AdjustTxEnd") ; } struct Data { Index: sources/model/hd/adjustment/treatment/MTreatmentAdjustHeparinResponse.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/adjustment/treatment/MTreatmentAdjustHeparinResponse.h (.../MTreatmentAdjustHeparinResponse.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/adjustment/treatment/MTreatmentAdjustHeparinResponse.h (.../MTreatmentAdjustHeparinResponse.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -66,7 +66,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eEvent ; } - Unit_Enum unitText () const override { return Unit_Enum::eHD ; } + Unit_Enum unitText () const override { return Unit_Enum::eTD ; } QString infoText () const override { return QString("AdjustHeparin") ; } struct Data { Index: sources/model/hd/adjustment/treatment/MTreatmentAdjustPressuresLimitsResponse.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/adjustment/treatment/MTreatmentAdjustPressuresLimitsResponse.h (.../MTreatmentAdjustPressuresLimitsResponse.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/adjustment/treatment/MTreatmentAdjustPressuresLimitsResponse.h (.../MTreatmentAdjustPressuresLimitsResponse.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -72,7 +72,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eEvent ; } - Unit_Enum unitText () const override { return Unit_Enum::eHD ; } + Unit_Enum unitText () const override { return Unit_Enum::eTD ; } QString infoText () const override { return QString("AdjustPressuresLimits") ; } struct Data { Index: sources/model/hd/adjustment/treatment/MTreatmentAdjustRecirculateResponse.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/adjustment/treatment/MTreatmentAdjustRecirculateResponse.h (.../MTreatmentAdjustRecirculateResponse.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/adjustment/treatment/MTreatmentAdjustRecirculateResponse.h (.../MTreatmentAdjustRecirculateResponse.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -66,7 +66,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eEvent ; } - Unit_Enum unitText () const override { return Unit_Enum::eHD ; } + Unit_Enum unitText () const override { return Unit_Enum::eTD ; } QString infoText () const override { return QString("AdjustRecirculate") ; } struct Data { Index: sources/model/hd/adjustment/treatment/MTreatmentAdjustRequests.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/adjustment/treatment/MTreatmentAdjustRequests.h (.../MTreatmentAdjustRequests.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/adjustment/treatment/MTreatmentAdjustRequests.h (.../MTreatmentAdjustRequests.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -50,12 +50,9 @@ class MAdjustPowerOffReq : public MModel { public: quint8 state; - // disabled coco begin validated : Has been validated manually. - // This object is used statically for now, kept the logic for later usage. QString toString() { return toString({state}); } - // disabled coco end explicit MAdjustPowerOffReq(quint8 vState) : state(vState) { } static QString toString(const QVariantList &vParameters) { @@ -82,12 +79,9 @@ quint32 mId = 0; /*!< Request ID */ quint32 mConfirm = 0; /*!< user confirm */ - // disabled coco begin validated : Has been validated manually. - // This object is used statically for now, kept the logic for later usage. QString toString() { return toString({mId, mConfirm}); } - // disabled coco end static QString toString(const QVariantList &vParameters) { return MModel::toString("Confirm", vParameters); @@ -113,12 +107,9 @@ public: quint32 bloodFlow = 0; quint32 dialysateFlow = 0; - // disabled coco begin validated : Has been validated manually. - // This object is used statically for now, kept the logic for later usage. QString toString() { return toString({bloodFlow , dialysateFlow}); } - // disabled coco end static QString toString(const QVariantList &vParameters) { return MModel::toString("AdjustBloodDialysate", vParameters); } @@ -140,12 +131,9 @@ class MAdjustDurationReq : public MModel { public: quint32 duration = 0; - // disabled coco begin validated : Has been validated manually. - // This object is used statically for now, kept the logic for later usage. QString toString() { return toString({duration}); } - // disabled coco end static QString toString(const QVariantList &vParameters) { return MModel::toString("AdjustDuration", vParameters); } @@ -168,12 +156,9 @@ public: GuiUFCommands requestedState = GuiUFCommands::UF_CMD_PAUSE; // the requested state. Initially it's running => paused. - // disabled coco begin validated : Has been validated manually. - // This object is used statically for now, kept the logic for later usage. QString toString() { return toString({requestedState}); } - // disabled coco end static QString toString(const QVariantList &vParameters) { return MModel::toString("AdjustUFState", vParameters); } @@ -195,12 +180,9 @@ class MAdjustUltrafiltrationEditReq : public MModel { public: float volume = 0; - // disabled coco begin validated : Has been validated manually. - // This object is used statically for now, kept the logic for later usage. QString toString() { return toString({volume}); } - // disabled coco end static QString toString(const QVariantList &vParameters) { return MModel::toString("AdjustUFEdit", vParameters); } @@ -231,12 +213,9 @@ float volume = 0; Options option = eDuration; - // disabled coco begin validated : Has been validated manually. - // This object is used statically for now, kept the logic for later usage. QString toString() { return toString({volume , option}); } - // disabled coco end static QString toString(const QVariantList &vParameters) { return MModel::toString("AdjustUFConfirm", vParameters); } @@ -262,12 +241,9 @@ class MAdjustSalineReq : public MModel { public: GuiSalineCommands requestedState = GuiSalineCommands::SALINE_CMD_STOP; // the requested state. Initially it's Stop => start. - // disabled coco begin validated : Has been validated manually. - // This object is used statically for now, kept the logic for later usage. QString toString() { return toString({requestedState}); } - // disabled coco end static QString toString(const QVariantList &vParameters) { return MModel::toString("AdjustSaline", vParameters); } @@ -293,12 +269,9 @@ class MAdjustHeparinReq : public MModel { public: GuiHeparinCommands requestedState = GuiHeparinCommands::HEPARIN_CMD_PAUSE ; // the requested state. Initially it's running with Initial Bolus. - // disabled coco begin validated : Has been validated manually. - // This object is used statically for now, kept the logic for later usage. QString toString() { return toString({requestedState}); } - // disabled coco end static QString toString(const QVariantList &vParameters) { return MModel::toString("AdjustHeparin", vParameters); } @@ -328,16 +301,13 @@ qint32 mVenousPressureLimitWindow = 0; ///< (S32) Venous Pressure Limit Window (mmHg) qint32 mVenousPressureLimitAsymtrc = 0; ///< (S32) Venous Pressure Limit Asymmetric(mmHg) - // disabled coco begin validated : Has been validated manually. - // This object is used statically for now, kept the logic for later usage. QString toString() { return toString ({ mArterialPressureLimitWindow , mVenousPressureLimitWindow , mVenousPressureLimitAsymtrc }); } - // disabled coco end static QString toString(const QVariantList &vParameters) { return MModel::toString("AdjustPressuresLimits", vParameters); } @@ -363,12 +333,9 @@ class MAdjustRinsebackReq : public MModel { public: GuiRinsebackCommands requestedState = GuiRinsebackCommands::REQUESTED_USER_ACTION_RINSEBACK_CONFIRM_START; // the requested state. - // disabled coco begin validated : Has been validated manually. - // This object is used statically for now, kept the logic for later usage. QString toString() { return toString({requestedState}); } - // disabled coco end static QString toString(const QVariantList &vParameters) { return MModel::toString("AdjustRinseback", vParameters); } @@ -394,12 +361,9 @@ class MAdjustRecirculateReq : public MModel { public: GuiRecirculateCommands requestedState = GuiRecirculateCommands::REQUESTED_USER_ACTION_TX_RECIRC_RECONNECT; // the requested state. - // disabled coco begin validated : Has been validated manually. - // This object is used statically for now, kept the logic for later usage. QString toString() { return toString({requestedState}); } - // disabled coco end static QString toString(const QVariantList &vParameters) { return MModel::toString("AdjustRecirculate", vParameters); } @@ -425,12 +389,9 @@ class MAdjustTreatmentEndReq : public MModel { public: GuiTreatmentEndCommands requestedState = GuiTreatmentEndCommands::REQUESTED_USER_ACTION_TX_END_RINSEBACK_START; // the requested state. - // disabled coco begin validated : Has been validated manually. - // This object is used statically for now, kept the logic for later usage. QString toString() { return toString({requestedState}); } - // disabled coco end static QString toString(const QVariantList &vParameters) { return MModel::toString("AdjustTxEnd", vParameters); } @@ -454,48 +415,15 @@ class MAlarmSilenceReq : public MModel { public: quint32 silence = 1; - // disabled coco begin validated : Has been validated manually. - // This object is used statically for now, kept the logic for later usage. QString toString() { return toString({silence}); } - // disabled coco end static QString toString(const QVariantList &vParameters) { return MModel::toString("AlarmSilence", vParameters); } }; /*! - * \brief The MAlarmClearedConditionReq class - * \details The model to tell HD an alarm has been acknowledged - * - * | MSG | CAN ID | M.Box | Type | Ack | Src | Dest | Description | - * |:----:|:----------:|:-----:|:----:|:---:|:---:|:----:|:------------------------:| - * |0x3F00| 0x001,2,4 | N/A | Cmd | Y | UI | HD | Alarm Condition Cleared | - * - * | Payload || - * | || - * | #1:(U32) | \ref alarmID | - * - */ -// disabled coco begin validated: Manually tested. This model class is a placeholder for the message 63(0x3F00) and there is no use case for this now. -class MAlarmClearedConditionReq : public MModel { -public: - GuiAlarmID alarmID = GuiAlarmID::ALARM_ID_NO_ALARM; - // disabled coco begin validated : Has been validated manually. - // This object is used statically for now, kept the logic for later usage. - QString toString() { - return toString({alarmID}); - } - // disabled coco end - // coco begin validate : - static QString toString(const QVariantList &vParameters) { - return MModel::toString("AlarmCondition", vParameters); - } -}; -// disabled coco end - -/*! * \brief The MAlarmUserActionReq class * \details The model to tell HD an alarm action has been made by user * @@ -511,12 +439,9 @@ class MAlarmUserActionReq : public MModel { public: GuiAlarmUserActions action; - // disabled coco begin validated : Has been validated manually. - // This object is used statically for now, kept the logic for later usage. QString toString() { return toString({action}); } - // disabled coco end static QString toString(const QVariantList &vParameters) { return MModel::toString("AlarmUserAction", vParameters); } @@ -539,5 +464,4 @@ typedef Model:: MAdjustPressuresLimitsReq AdjustPressuresLimitsRequestData; // Alarms typedef Model:: MAlarmSilenceReq AlarmSilenceRequestData; -typedef Model:: MAlarmClearedConditionReq AlarmClearedConditionRequestData; typedef Model:: MAlarmUserActionReq AlarmUserActionRequestData; Index: sources/model/hd/adjustment/treatment/MTreatmentAdjustRinsebackResponse.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/adjustment/treatment/MTreatmentAdjustRinsebackResponse.h (.../MTreatmentAdjustRinsebackResponse.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/adjustment/treatment/MTreatmentAdjustRinsebackResponse.h (.../MTreatmentAdjustRinsebackResponse.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -66,7 +66,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eEvent ; } - Unit_Enum unitText () const override { return Unit_Enum::eHD ; } + Unit_Enum unitText () const override { return Unit_Enum::eTD ; } QString infoText () const override { return QString("AdjustRinseback") ; } struct Data { Index: sources/model/hd/adjustment/treatment/MTreatmentAdjustSalineResponse.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/adjustment/treatment/MTreatmentAdjustSalineResponse.h (.../MTreatmentAdjustSalineResponse.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/adjustment/treatment/MTreatmentAdjustSalineResponse.h (.../MTreatmentAdjustSalineResponse.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -68,7 +68,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eEvent ; } - Unit_Enum unitText () const override { return Unit_Enum::eHD ; } + Unit_Enum unitText () const override { return Unit_Enum::eTD ; } QString infoText () const override { return QString("AdjustSaline") ; } struct Data { Index: sources/model/hd/adjustment/treatment/MTreatmentAdjustUltrafiltrationStateResponse.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/adjustment/treatment/MTreatmentAdjustUltrafiltrationStateResponse.h (.../MTreatmentAdjustUltrafiltrationStateResponse.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/adjustment/treatment/MTreatmentAdjustUltrafiltrationStateResponse.h (.../MTreatmentAdjustUltrafiltrationStateResponse.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -66,7 +66,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eEvent ; } - Unit_Enum unitText () const override { return Unit_Enum::eHD ; } + Unit_Enum unitText () const override { return Unit_Enum::eTD ; } QString infoText () const override { return QString("AdjustUFState"); } struct Data { Index: sources/model/hd/alarm/MAlarmActiveList.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/alarm/MAlarmActiveList.h (.../MAlarmActiveList.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/alarm/MAlarmActiveList.h (.../MAlarmActiveList.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -43,12 +43,9 @@ */ class MAlarmActiveListReq : public MModel { public: - // disabled coco begin validated : Has been validated manually. - // This object is used statically for now, kept the logic for later usage. QString toString() { return toString({}); } - // disabled coco end static QString toString(const QVariantList &vParameters) { return MModel::toString("AlarmActiveList", vParameters); } @@ -112,7 +109,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eEvent ; } - Unit_Enum unitText () const override { return Unit_Enum::eHD ; } + Unit_Enum unitText () const override { return Unit_Enum::eTD ; } QString infoText () const override { return QString("AlarmActiveList"); } struct Data { Index: sources/model/hd/alarm/MAlarmCleared.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/alarm/MAlarmCleared.h (.../MAlarmCleared.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/alarm/MAlarmCleared.h (.../MAlarmCleared.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -61,7 +61,7 @@ public: Type_Enum typeText() const override { return Type_Enum::eEvent ; } - Unit_Enum unitText() const override { return Unit_Enum::eHD ; } + Unit_Enum unitText() const override { return Unit_Enum::eTD ; } QString infoText() const override { return QString("AlarmCleared") ; } struct Data { Fisheye: Tag a58f91b077c8131bea3dbde0fc338adb113fc9f3 refers to a dead (removed) revision in file `sources/model/hd/alarm/MAlarmClearedCondition.cpp'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag a58f91b077c8131bea3dbde0fc338adb113fc9f3 refers to a dead (removed) revision in file `sources/model/hd/alarm/MAlarmClearedCondition.h'. Fisheye: No comparison available. Pass `N' to diff? Index: sources/model/hd/alarm/MAlarmStatusData.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/alarm/MAlarmStatusData.h (.../MAlarmStatusData.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/alarm/MAlarmStatusData.h (.../MAlarmStatusData.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -71,7 +71,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eDatum ; } - Unit_Enum unitText () const override { return Unit_Enum::eHD ; } + Unit_Enum unitText () const override { return Unit_Enum::eTD ; } QString infoText () const override { return QString("AlarmStatus") ; } struct Data { Index: sources/model/hd/alarm/MAlarmTriggered.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/alarm/MAlarmTriggered.h (.../MAlarmTriggered.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/alarm/MAlarmTriggered.h (.../MAlarmTriggered.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -66,7 +66,7 @@ public: Type_Enum typeText() const override { return Type_Enum::eEvent ; } - Unit_Enum unitText() const override { return Unit_Enum::eHD ; } + Unit_Enum unitText() const override { return Unit_Enum::eTD ; } QString infoText() const override { return QString("AlarmTriggered") ; } struct Data { @@ -129,10 +129,7 @@ */ class MAlarmTriggeredReq : public MModel { public: - // disabled coco begin validated: Has been validated manually. - // This object is used statically for now, kept the logic for later usage. QString toString(); - // disabled coco end static QString toString(const QVariantList &vParameters); static Can::Can_Id canid (); }; Index: sources/model/hd/data/MHDAccelerometerData.cpp =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/data/MHDAccelerometerData.cpp (.../MHDAccelerometerData.cpp) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/data/MHDAccelerometerData.cpp (.../MHDAccelerometerData.cpp) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -14,10 +14,6 @@ */ #include "MHDAccelerometerData.h" -// disabled coco begin validated: -// FIXME: this model was only for the Diagnostic use, and has been removed, -// Should be removed from the UI Software if not being used anymore - using namespace Model; QVariantList MHDAccelerometer::parameters() const { @@ -47,10 +43,10 @@ if ( ! GetValue(vByteArray, index, _data.mZTilt )) goto lError; return true ; - + lError: if(vIndex) { *vIndex = index; } - + return false ; } @@ -67,5 +63,3 @@ data.mZTilt = _data.mZTilt .value; return data; } - -// disabled coco end Index: sources/model/hd/data/MHDAccelerometerData.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/data/MHDAccelerometerData.h (.../MHDAccelerometerData.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/data/MHDAccelerometerData.h (.../MHDAccelerometerData.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -25,10 +25,6 @@ // forward declarations class tst_models; -// disabled coco begin validated: -// FIXME: this model was only for the Diagnostic use, and has been removed, -// Should be removed from the UI Software if not being used anymore - namespace Model { /*! @@ -84,7 +80,7 @@ public: Type_Enum typeText() const override { return Type_Enum::eDatum; } - Unit_Enum unitText() const override { return Unit_Enum::eHD ; } + Unit_Enum unitText() const override { return Unit_Enum::eTD ; } QString infoText() const override { return QString("Accel") ; } struct Data { @@ -108,5 +104,3 @@ } typedef Model::MHDAccelerometer::Data HDAccelerometerData; - -// disabled coco end Index: sources/model/hd/data/MHDAirBubbleData.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/data/MHDAirBubbleData.h (.../MHDAirBubbleData.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/data/MHDAirBubbleData.h (.../MHDAirBubbleData.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -65,7 +65,7 @@ public: Type_Enum typeText() const override { return Type_Enum::eDatum ; } - Unit_Enum unitText() const override { return Unit_Enum::eHD ; } + Unit_Enum unitText() const override { return Unit_Enum::eTD ; } QString infoText() const override { return QString("AirBubble"); } Index: sources/model/hd/data/MHDAirTrapData.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/data/MHDAirTrapData.h (.../MHDAirTrapData.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/data/MHDAirTrapData.h (.../MHDAirTrapData.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -69,7 +69,7 @@ public: Type_Enum typeText() const override { return Type_Enum::eDatum ; } - Unit_Enum unitText() const override { return Unit_Enum::eHD ; } + Unit_Enum unitText() const override { return Unit_Enum::eTD ; } QString infoText() const override { return QString("AirTrap") ; } Index: sources/model/hd/data/MHDBloodLeakData.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/data/MHDBloodLeakData.h (.../MHDBloodLeakData.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/data/MHDBloodLeakData.h (.../MHDBloodLeakData.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -70,7 +70,7 @@ public: Type_Enum typeText() const override { return Type_Enum::eDatum ; } - Unit_Enum unitText() const override { return Unit_Enum::eHD ; } + Unit_Enum unitText() const override { return Unit_Enum::eTD ; } QString infoText() const override { return QString("BloodLeak") ; } struct Data { Index: sources/model/hd/data/MHDDebugText.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/data/MHDDebugText.h (.../MHDDebugText.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/data/MHDDebugText.h (.../MHDDebugText.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -59,7 +59,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eDatum; } - Unit_Enum unitText () const override { return Unit_Enum::eHD ; } + Unit_Enum unitText () const override { return Unit_Enum::eTD ; } QString infoText () const override { return QString("Debug") ; } struct Data { Index: sources/model/hd/data/MHDGeneralEvent.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/data/MHDGeneralEvent.h (.../MHDGeneralEvent.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/data/MHDGeneralEvent.h (.../MHDGeneralEvent.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -59,7 +59,7 @@ public: Type_Enum typeText() const override { return Type_Enum::eEvent ; } - Unit_Enum unitText() const override { return Unit_Enum::eHD ; } + Unit_Enum unitText() const override { return Unit_Enum::eTD ; } QString infoText() const override { return QString("General" ) ; } struct Data { Index: sources/model/hd/data/MHDOperationModeData.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/data/MHDOperationModeData.h (.../MHDOperationModeData.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/data/MHDOperationModeData.h (.../MHDOperationModeData.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -64,7 +64,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eDatum; } - Unit_Enum unitText () const override { return Unit_Enum::eHD ; } + Unit_Enum unitText () const override { return Unit_Enum::eTD ; } QString infoText () const override { return QString("OpMode"); } struct Data { Index: sources/model/hd/data/MHDSyringePumpData.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/data/MHDSyringePumpData.h (.../MHDSyringePumpData.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/data/MHDSyringePumpData.h (.../MHDSyringePumpData.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -85,7 +85,7 @@ public: Type_Enum typeText() const override { return Type_Enum::eDatum ; } - Unit_Enum unitText() const override { return Unit_Enum::eHD ; } + Unit_Enum unitText() const override { return Unit_Enum::eTD ; } QString infoText() const override { return QString("Syringe"); } struct Data { Index: sources/model/hd/data/MHDUsageInfoResponse.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/data/MHDUsageInfoResponse.h (.../MHDUsageInfoResponse.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/data/MHDUsageInfoResponse.h (.../MHDUsageInfoResponse.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -70,7 +70,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eDatum; } - Unit_Enum unitText () const override { return Unit_Enum::eHD ; } + Unit_Enum unitText () const override { return Unit_Enum::eTD ; } QString infoText () const override { return QString("HDUsageInfo"); } struct Data { Index: sources/model/hd/data/MTreatmentRangesData.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/data/MTreatmentRangesData.h (.../MTreatmentRangesData.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/data/MTreatmentRangesData.h (.../MTreatmentRangesData.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -72,7 +72,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eDatum ; } - Unit_Enum unitText () const override { return Unit_Enum::eHD ; } + Unit_Enum unitText () const override { return Unit_Enum::eTD ; } QString infoText () const override { return QString("TreatmentRanges"); } struct Data { Index: sources/model/hd/data/post/MHDPostFinalResultData.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/data/post/MHDPostFinalResultData.h (.../MHDPostFinalResultData.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/data/post/MHDPostFinalResultData.h (.../MHDPostFinalResultData.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -64,7 +64,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eDatum ;} - Unit_Enum unitText () const override { return Unit_Enum::eHD ;} + Unit_Enum unitText () const override { return Unit_Enum::eTD ;} QString infoText () const override { return QString("POSTDone") ;} struct Data { Index: sources/model/hd/data/post/MHDPostSingleResultData.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/data/post/MHDPostSingleResultData.h (.../MHDPostSingleResultData.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/data/post/MHDPostSingleResultData.h (.../MHDPostSingleResultData.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -66,7 +66,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eDatum ;} - Unit_Enum unitText () const override { return Unit_Enum::eHD ;} + Unit_Enum unitText () const override { return Unit_Enum::eTD ;} QString infoText () const override { return QString("POSTItem") ;} struct Data { Index: sources/model/hd/data/post/MHDRTCEpochData.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/data/post/MHDRTCEpochData.h (.../MHDRTCEpochData.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/data/post/MHDRTCEpochData.h (.../MHDRTCEpochData.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -63,7 +63,7 @@ public: Type_Enum typeText() const override { return Type_Enum::eDatum ; } - Unit_Enum unitText() const override { return Unit_Enum::eHD ; } + Unit_Enum unitText() const override { return Unit_Enum::eTD ; } QString infoText() const override { return QString("HDRTCEpoch") ; } Index: sources/model/hd/data/post/MUIPostFinalResultHDRequest.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/data/post/MUIPostFinalResultHDRequest.h (.../MUIPostFinalResultHDRequest.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/data/post/MUIPostFinalResultHDRequest.h (.../MUIPostFinalResultHDRequest.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -62,7 +62,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eEvent ;} - Unit_Enum unitText () const override { return Unit_Enum::eHD ;} + Unit_Enum unitText () const override { return Unit_Enum::eTD ;} QString infoText () const override { return QString("UIPOSTDoneReq" ) ;} struct Data { Index: sources/model/hd/data/posttreatment/MPostTreatmentStatesData.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/data/posttreatment/MPostTreatmentStatesData.h (.../MPostTreatmentStatesData.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/data/posttreatment/MPostTreatmentStatesData.h (.../MPostTreatmentStatesData.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -66,7 +66,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eDatum ; } - Unit_Enum unitText () const override { return Unit_Enum::eHD ; } + Unit_Enum unitText () const override { return Unit_Enum::eTD ; } QString infoText () const override { return QString("PostTreatmentStates"); } struct Data { Index: sources/model/hd/data/pretreatment/MPreTreatmentDisposablesPrimeData.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/data/pretreatment/MPreTreatmentDisposablesPrimeData.h (.../MPreTreatmentDisposablesPrimeData.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/data/pretreatment/MPreTreatmentDisposablesPrimeData.h (.../MPreTreatmentDisposablesPrimeData.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -60,7 +60,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eDatum ; } - Unit_Enum unitText () const override { return Unit_Enum::eHD ; } + Unit_Enum unitText () const override { return Unit_Enum::eTD ; } QString infoText () const override { return QString("DisposablesPrime"); } struct Data { Index: sources/model/hd/data/pretreatment/MPreTreatmentSelfTestDryData.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/data/pretreatment/MPreTreatmentSelfTestDryData.h (.../MPreTreatmentSelfTestDryData.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/data/pretreatment/MPreTreatmentSelfTestDryData.h (.../MPreTreatmentSelfTestDryData.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -63,7 +63,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eDatum ; } - Unit_Enum unitText () const override { return Unit_Enum::eHD ; } + Unit_Enum unitText () const override { return Unit_Enum::eTD ; } QString infoText () const override { return QString("SelfTestDry"); } struct Data { Index: sources/model/hd/data/pretreatment/MPreTreatmentSelfTestNoCartridgeData.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/data/pretreatment/MPreTreatmentSelfTestNoCartridgeData.h (.../MPreTreatmentSelfTestNoCartridgeData.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/data/pretreatment/MPreTreatmentSelfTestNoCartridgeData.h (.../MPreTreatmentSelfTestNoCartridgeData.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -63,7 +63,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eDatum ; } - Unit_Enum unitText () const override { return Unit_Enum::eHD ; } + Unit_Enum unitText () const override { return Unit_Enum::eTD ; } QString infoText () const override { return QString("SelfTestNoCartridge"); } struct Data { Index: sources/model/hd/data/pretreatment/MPreTreatmentStatesData.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/data/pretreatment/MPreTreatmentStatesData.h (.../MPreTreatmentStatesData.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/data/pretreatment/MPreTreatmentStatesData.h (.../MPreTreatmentStatesData.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -91,7 +91,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eDatum ; } - Unit_Enum unitText () const override { return Unit_Enum::eHD ; } + Unit_Enum unitText () const override { return Unit_Enum::eTD ; } QString infoText () const override { return QString("PreTreatmentStates"); } struct Data { Index: sources/model/hd/data/treatment/MTreatmentBloodFlowData.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/data/treatment/MTreatmentBloodFlowData.h (.../MTreatmentBloodFlowData.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/data/treatment/MTreatmentBloodFlowData.h (.../MTreatmentBloodFlowData.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -77,7 +77,7 @@ QVariantList parameters() const override; public: Type_Enum typeText () const override { return Type_Enum::eDatum; } - Unit_Enum unitText () const override { return Unit_Enum::eHD ; } + Unit_Enum unitText () const override { return Unit_Enum::eTD ; } QString infoText () const override { return QString("BloodFlow"); } struct Data { Index: sources/model/hd/data/treatment/MTreatmentBloodPrimeData.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/data/treatment/MTreatmentBloodPrimeData.h (.../MTreatmentBloodPrimeData.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/data/treatment/MTreatmentBloodPrimeData.h (.../MTreatmentBloodPrimeData.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -64,7 +64,7 @@ public: Type_Enum typeText() const override { return Type_Enum::eDatum ; } - Unit_Enum unitText() const override { return Unit_Enum::eHD ; } + Unit_Enum unitText() const override { return Unit_Enum::eTD ; } QString infoText() const override { return QString("BloodPrime") ; } struct Data { Index: sources/model/hd/data/treatment/MTreatmentDialysateFlowData.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/data/treatment/MTreatmentDialysateFlowData.h (.../MTreatmentDialysateFlowData.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/data/treatment/MTreatmentDialysateFlowData.h (.../MTreatmentDialysateFlowData.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -79,7 +79,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eDatum; } - Unit_Enum unitText () const override { return Unit_Enum::eHD ; } + Unit_Enum unitText () const override { return Unit_Enum::eTD ; } QString infoText () const override { return QString("DialysateFlow"); } struct Data { Index: sources/model/hd/data/treatment/MTreatmentHeparinData.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/data/treatment/MTreatmentHeparinData.h (.../MTreatmentHeparinData.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/data/treatment/MTreatmentHeparinData.h (.../MTreatmentHeparinData.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -66,7 +66,7 @@ public: Type_Enum typeText() const override { return Type_Enum::eDatum ; } - Unit_Enum unitText() const override { return Unit_Enum::eHD ; } + Unit_Enum unitText() const override { return Unit_Enum::eTD ; } QString infoText() const override { return QString("Heparin") ; } struct Data { Index: sources/model/hd/data/treatment/MTreatmentOutletFlowData.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/data/treatment/MTreatmentOutletFlowData.h (.../MTreatmentOutletFlowData.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/data/treatment/MTreatmentOutletFlowData.h (.../MTreatmentOutletFlowData.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -86,7 +86,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eDatum ; } - Unit_Enum unitText () const override { return Unit_Enum::eHD ; } + Unit_Enum unitText () const override { return Unit_Enum::eTD ; } QString infoText () const override { return QString("OutletFlow"); } struct Data { Index: sources/model/hd/data/treatment/MTreatmentPressureOcclusionData.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/data/treatment/MTreatmentPressureOcclusionData.h (.../MTreatmentPressureOcclusionData.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/data/treatment/MTreatmentPressureOcclusionData.h (.../MTreatmentPressureOcclusionData.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -84,7 +84,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eDatum ; } - Unit_Enum unitText () const override { return Unit_Enum::eHD ; } + Unit_Enum unitText () const override { return Unit_Enum::eTD ; } QString infoText () const override { return QString("Occlusion"); } struct Data { Index: sources/model/hd/data/treatment/MTreatmentRecirculateData.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/data/treatment/MTreatmentRecirculateData.h (.../MTreatmentRecirculateData.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/data/treatment/MTreatmentRecirculateData.h (.../MTreatmentRecirculateData.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -66,7 +66,7 @@ public: Type_Enum typeText() const override { return Type_Enum::eDatum ; } - Unit_Enum unitText() const override { return Unit_Enum::eHD ; } + Unit_Enum unitText() const override { return Unit_Enum::eTD ; } QString infoText() const override { return QString("Recirculate") ; } struct Data { Index: sources/model/hd/data/treatment/MTreatmentRinsebackData.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/data/treatment/MTreatmentRinsebackData.h (.../MTreatmentRinsebackData.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/data/treatment/MTreatmentRinsebackData.h (.../MTreatmentRinsebackData.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -74,7 +74,7 @@ public: Type_Enum typeText() const override { return Type_Enum::eDatum ; } - Unit_Enum unitText() const override { return Unit_Enum::eHD ; } + Unit_Enum unitText() const override { return Unit_Enum::eTD ; } QString infoText() const override { return QString("Rinseback") ; } struct Data { Index: sources/model/hd/data/treatment/MTreatmentSalineData.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/data/treatment/MTreatmentSalineData.h (.../MTreatmentSalineData.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/data/treatment/MTreatmentSalineData.h (.../MTreatmentSalineData.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -68,7 +68,7 @@ public: Type_Enum typeText() const override { return Type_Enum::eDatum ; } - Unit_Enum unitText() const override { return Unit_Enum::eHD ; } + Unit_Enum unitText() const override { return Unit_Enum::eTD ; } QString infoText() const override { return QString("Saline") ; } struct Data { Index: sources/model/hd/data/treatment/MTreatmentStatesData.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/data/treatment/MTreatmentStatesData.h (.../MTreatmentStatesData.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/data/treatment/MTreatmentStatesData.h (.../MTreatmentStatesData.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -91,7 +91,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eDatum ; } - Unit_Enum unitText () const override { return Unit_Enum::eHD ; } + Unit_Enum unitText () const override { return Unit_Enum::eTD ; } QString infoText () const override { return QString("TreatmentStates"); } struct Data { Index: sources/model/hd/data/treatment/MTreatmentStopData.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/data/treatment/MTreatmentStopData.h (.../MTreatmentStopData.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/data/treatment/MTreatmentStopData.h (.../MTreatmentStopData.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -64,7 +64,7 @@ public: Type_Enum typeText() const override { return Type_Enum::eDatum ; } - Unit_Enum unitText() const override { return Unit_Enum::eHD ; } + Unit_Enum unitText() const override { return Unit_Enum::eTD ; } QString infoText() const override { return QString("Stop" ) ; } struct Data { Index: sources/model/hd/data/treatment/MTreatmentTimeData.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/data/treatment/MTreatmentTimeData.h (.../MTreatmentTimeData.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/data/treatment/MTreatmentTimeData.h (.../MTreatmentTimeData.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -66,7 +66,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eDatum ; } - Unit_Enum unitText () const override { return Unit_Enum::eHD ; } + Unit_Enum unitText () const override { return Unit_Enum::eTD ; } QString infoText () const override { return QString("TreatmentTime"); } struct Data { Index: sources/model/hd/data/treatmentlog/MTreatmentLogAlarmData.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/data/treatmentlog/MTreatmentLogAlarmData.h (.../MTreatmentLogAlarmData.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/data/treatmentlog/MTreatmentLogAlarmData.h (.../MTreatmentLogAlarmData.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -68,7 +68,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eDatum ; } - Unit_Enum unitText () const override { return Unit_Enum::eHD ; } + Unit_Enum unitText () const override { return Unit_Enum::eTD ; } QString infoText () const override { return QString("TreatmentLogAlarm") ; } struct Data { Index: sources/model/hd/data/treatmentlog/MTreatmentLogAvrgeData.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/data/treatmentlog/MTreatmentLogAvrgeData.h (.../MTreatmentLogAvrgeData.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/data/treatmentlog/MTreatmentLogAvrgeData.h (.../MTreatmentLogAvrgeData.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -72,7 +72,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eDatum ; } - Unit_Enum unitText () const override { return Unit_Enum::eHD ; } + Unit_Enum unitText () const override { return Unit_Enum::eTD ; } QString infoText () const override { return QString("TreatmentLogAvrge") ; } struct Data { Index: sources/model/hd/data/treatmentlog/MTreatmentLogEventData.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/model/hd/data/treatmentlog/MTreatmentLogEventData.h (.../MTreatmentLogEventData.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/model/hd/data/treatmentlog/MTreatmentLogEventData.h (.../MTreatmentLogEventData.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -68,7 +68,7 @@ public: Type_Enum typeText () const override { return Type_Enum::eDatum ; } - Unit_Enum unitText () const override { return Unit_Enum::eHD ; } + Unit_Enum unitText () const override { return Unit_Enum::eTD ; } QString infoText () const override { return QString("TreatmentLogEvent") ; } struct Data { Index: sources/storage/FileHandler.cpp =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/storage/FileHandler.cpp (.../FileHandler.cpp) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/storage/FileHandler.cpp (.../FileHandler.cpp) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -43,9 +43,7 @@ { static uint count; static QString mCritical; - // disabled coco begin validated : This has been manually test. Needs file system access to produce errors for hundred times. if (mCritical != vMessage || !(count % 1000)) { - // disabled coco end count = 0; mCritical = vMessage; QTextStream err(stderr); @@ -73,14 +71,12 @@ QFile::OpenMode openMode = vAppend ? QFile::Text | QFile::Append : QFile::Text | QFile::WriteOnly; - // disabled coco begin validated : This has been manually test. Needs file system access to make file the way it cannot be opened for writing. if (! file.open(openMode)) { QString msg = QString("Cannot open file for write (%1). Possible corrupted file system.").arg(vFileName); // here cannot use LOG_XXXX because if the folder cannot be created then the log cannot be written. errOut (msg); return false; } - // disabled coco end QTextStream out(&file); out << vContent; out.flush(); @@ -141,15 +137,12 @@ */ int FileHandler::copyFolder(const QString &vSource, const QString &vDestination) { - // disabled coco begin validated: This needs user interaction to export to USB device - // has been tested manually since currently it is the only place it has been used. QString cmd = "cp"; QStringList arguments; arguments << "-r" << vSource << vDestination; int result = QProcess::execute(cmd, arguments); return result; } -// disabled coco end /*! * \brief FileHandler::moveFolder @@ -161,15 +154,12 @@ */ int FileHandler::moveFolder(const QString &vSource, const QString &vDestination) { - // disabled coco begin validated: This needs user interaction to check the file system - // has been tested manually since currently it is the only place it has been used. QString cmd = "mv"; QStringList arguments; arguments << vSource << vDestination; int result = QProcess::execute(cmd, arguments); return result; } -// disabled coco end /*! * \brief FileHandler::removeFolder @@ -182,15 +172,12 @@ */ int FileHandler::removeFolder(const QString &vFolder) { - // disabled coco begin validated: This needs user interaction to check the file system - // has been tested manually since currently it is the only place it has been used. QString cmd = "rm"; QStringList arguments; arguments << "-frd" << vFolder; int result = QProcess::execute(cmd, arguments); return result; } -// disabled coco end /*! * \brief FileHandler::removeFiles @@ -211,7 +198,6 @@ for (const auto &info : infoList) { QDateTime fileTime = info.lastModified(); QString fileName = info.absoluteFilePath(); - // disabled coco begin validated : This has been manually tested since requires to change in file system to reproduce the error. if (fileTime.isValid()) { if (fileTime.date() <= vDateOlderThan) { if (QFile::remove(fileName)) { @@ -226,7 +212,6 @@ else { errOut(QString("Cannot get last modified date of file : ") + fileName); } - // disabled coco end } } return countRemoved; @@ -329,8 +314,6 @@ * if vRetainPercent is used then it contains list of the file(s) to be removed. */ QFileInfoList FileHandler::find(const QString &vPath, QStringList vNameFilters, quint8 vRetainPercent) { - // disabled coco begin validated: Manually tested. Needs to fill up the storage to test some functionalities like vRetainPercent - QFileInfoList fileInfoList; // if all the files need to retain then no file shall be listed in the remove list. if ( vRetainPercent == 100 ) return fileInfoList; @@ -393,7 +376,6 @@ // ; return fileInfoList; } -// disabled coco end /*! * \brief FileHandler::find @@ -404,8 +386,6 @@ * if vRetainPercent is used then it contains list of the file(s) to be removed. */ QFileInfoList FileHandler::find(const QString &vPath, QStringList vNameFilters) { - // disabled coco begin validated: Needs to manually create specific folder with specific files to check the functionality - // manually tested QFileInfoList fileInfoList; QDir dir(vPath); if (!dir.exists()) return fileInfoList; @@ -420,17 +400,14 @@ ); return fileInfoList; } -// disabled coco end quint64 FileHandler::totalSize(const QFileInfoList &vFileInfoList) { - // disabled coco begin validated: Manually tested. requires list of files on file system to test and requires manual specific files for test. quint64 total = 0; for (auto it = vFileInfoList.crbegin(); it != vFileInfoList.crend(); ++it) { total += it->size(); } return total; } -// disabled coco end /*! * \brief FileHandler::subFolders Index: sources/storage/Logger.cpp =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/storage/Logger.cpp (.../Logger.cpp) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/storage/Logger.cpp (.../Logger.cpp) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -73,13 +73,10 @@ */ bool Logger::init(QThread &vThread) { - // disabled coco begin validated: Application is not running in multi-threaded mode for testing - // it has been tested and works perfectly fine in normal run. if ( ! init() ) return false; initThread(vThread); return true; } -// disabled coco end /*! * \brief Logger::postInit @@ -119,11 +116,8 @@ */ void Logger::quit() { - // disabled coco begin validated: Application termination is not correctly done in coco!!! - // it has been tested and works perfectly fine in normal run. quitThread(); // validated } -// disabled coco end /*! * \brief Logger::initConnections @@ -171,17 +165,14 @@ */ void Logger::initThread(QThread &vThread) { - // disabled coco begin validated: Application is not running in multi-threaded mode for testing - // it has been tested and works perfectly fine in normal run. - // runs in main thread Q_ASSERT_X(QThread::currentThread() == qApp->thread() , __func__, "The Class initialization must be done in Main Thread" ); _thread = &vThread; _thread->setObjectName(QString("%1_Thread").arg(metaObject()->className())); connect(qApp, SIGNAL(aboutToQuit()), this, SLOT(quit())); _thread->start(); moveToThread(_thread); } -// disabled coco end + /*! * \brief Logger::quitThread * \details Moves this object to main thread to be handled by QApplication @@ -521,8 +512,6 @@ */ void Logger::onExportLogs() { - // disabled coco begin validated: This needs user interaction to export to USB device - // has been tested manually LOG_DEBUG(QString("Export %1 ended: %2").arg(_logNames[_exportLogsType]).arg(_exportLogsWatcher.result())); //DEBUG: qDebug()<< "_exportLogsWatcher.result()" << _exportLogsWatcher.result(); @@ -532,7 +521,6 @@ } emit didExportLogs(); } -// disabled coco end /*! * \brief CloudSyncController::onActionReceive @@ -668,15 +656,12 @@ */ bool Logger::concurrentRemoveLogs(LogType vLogType) { - // disabled coco begin validated: This needs user interaction to check the old files deleted - // has been tested manually LOG_DEBUG("Remove Logs Starting"); emit didRemoveLogs(true); QFuture mFuture = QtConcurrent::run(this, &Logger::removeLogs, vLogType); _removeLogsWatcher.setFuture(mFuture); return true; } -// disabled coco end /*! * \brief Logger::onRemoveLogs @@ -712,8 +697,6 @@ */ void Logger::onSDCardSpaceChange(bool vReady, qint64 vTotal, qint64 vAvailable, quint8 vPercent) { - // disabled coco begin validated: This needs user interaction to change the SD card files system. - // has been tested manually Q_UNUSED(vTotal ) Q_UNUSED(vAvailable ) if ( ! vReady ) return; @@ -723,9 +706,7 @@ concurrentRemoveLogs(); } } -// disabled coco end - /*! * \brief Logger::onSettingsPartitionStateChange * \details handle the state change of the settings partition @@ -751,8 +732,6 @@ */ void Logger::onSettingsPartitionSpaceChange(bool vReady, qint64 vTotal, qint64 vAvailable, quint8 vPercent) { - // disabled coco begin validated: This needs user interaction to change the SD card files system. - // has been tested manually Q_UNUSED(vTotal ) Q_UNUSED(vAvailable ) if ( ! vReady ) return; @@ -762,16 +741,13 @@ concurrentRemoveLogs(eLogTrtmt); } } -// disabled coco end - /*! * \brief Logger::enableConsoleOut * \details Enables or Disables the console output and logs the status * \param vEnabled - Enable console output if true */ void Logger::enableConsoleOut(bool vEnabled) { - // disabled coco begin validated: This code meant to be used only for debugging and tested manually if (_enableConsoleOut == vEnabled) return; _enableConsoleOut = vEnabled; if (_enableConsoleOut) { @@ -780,7 +756,6 @@ LOG_DEBUG("Console out Logging disabled"); } } -// disabled coco end /*! * \brief Logger::logPath Index: sources/view/VAdjustmentResponseBase.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/view/VAdjustmentResponseBase.h (.../VAdjustmentResponseBase.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/view/VAdjustmentResponseBase.h (.../VAdjustmentResponseBase.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -55,18 +55,15 @@ QMap _rejects; - // disabled coco begin validated: // The adjustment_Reason property as quint32 is not used directly in GUI // it will be used as QString text. - // has been manually tested that it works perfectly fine if used. // this property changed to trigger since it has been found out during tests that the reason could be same but has to be shown again. TRIGGER ( quint32 , adjustment_Reason , 0) - // disabled coco end PROPERTY( bool , adjustment_Accepted , 0) Q_PROPERTY(QString adjustment_ReasonText READ text NOTIFY adjustment_ReasonTriggered) - + VIEW_DEC_CLASS(VAdjustmentResponseBase) VIEW_DEC_SLOT (SettingsData ) Index: sources/view/VEventSpy.cpp =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/view/VEventSpy.cpp (.../VEventSpy.cpp) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/view/VEventSpy.cpp (.../VEventSpy.cpp) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -42,11 +42,9 @@ void VEventSpy::initConnections() { - // disabled coco begin validated: this code has been manually tested. // This should never happen with the current design and usage. // put here for developer safety if (Gui::_viewer) { - // disabled coco end QObject::connect(Gui::_viewer , SIGNAL( eventSpy(QEvent*)), this , SLOT(onEventSpy(QEvent*))); } @@ -62,7 +60,6 @@ QEvent::Type mType = vEvent->type(); switch (mType) { - // disabled coco begin validated: this code has been manually tested. // the only intention of this code is to be used for EMC testing and has been tested and is working fine. // Mouse case QEvent::Type::MouseButtonDblClick : mouseEventSpy(vEvent, "mD"); break; @@ -80,7 +77,6 @@ // Keyboard case QEvent::Type::KeyPress : keybdEventSpy(vEvent ); break; - // disabled coco end default : break; @@ -97,7 +93,6 @@ * \param vEvent - mouse event * \param vTypeName - mouse button type name */ -// disabled coco begin validated: this code has been manually tested. // the only intention of this code is to be used for EMC testing and has been tested and is working fine. void VEventSpy::mouseEventSpy(QEvent *vEvent, const QString &vTypeName) { @@ -138,24 +133,20 @@ .arg(y, 4, 10, QChar('0'))); #endif } -// disabled coco end -// disabled coco begin validated: this code has been manually tested. -// the only intention of this code is to be used for EMC testing and has been tested and is working fine. +// the only intention of this code is to be used for EMC testing. /*! * \brief VEventSpy::doMouseReset * \details mouse event count reset */ void VEventSpy::doMouseReset() { mouseCount(0); } -// disabled coco end /*! * \brief VEventSpy::touchEventSpy * \param vEvent - touch event * \param vTypeName - The type of the QEvent which has been shortened e.g. tB: TouchBegin */ -// disabled coco begin validated: this code has been manually tested. -// the only intention of this code is to be used for EMC testing and has been tested and is working fine. +// the only intention of this code is to be used for EMC testing. void VEventSpy::touchEventSpy(QEvent *vEvent, const QString &vTypeName) { QTouchEvent *touchEvent = static_cast(vEvent); @@ -181,20 +172,15 @@ } LOG_DEBUG( vTypeName + logString ); } -// disabled coco end -// disabled coco begin validated: this code has been manually tested. -// the only intention of this code is to be used for EMC testing and has been tested and is working fine. +// the only intention of this code is to be used for EMC. /*! * \brief VEventSpy::doTouchReset * \details touch event counter reset */ void VEventSpy::doTouchReset() { touchCount(0); } -// disabled coco end - -// disabled coco begin validated: this code has been manually tested. -// the only intention of this code is to be used for testing and has been tested and is working fine. +// the only intention of this code is to be used for testing. /*! * \brief VEventSpy::keybdEventSpy * \param vEvent @@ -238,4 +224,3 @@ break; } } -// disabled coco end Index: sources/view/VEventSpy.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/view/VEventSpy.h (.../VEventSpy.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/view/VEventSpy.h (.../VEventSpy.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -39,14 +39,11 @@ // singleton SINGLETON(VEventSpy) - // disabled coco begin validated: this code has been manually tested. - // the only intention of this code is to be used for EMC testing and has been tested and is working fine. PROPERTY( quint64 , touchCount , 0 ) PROPERTY( quint64 , touchPoints , 0 ) PROPERTY( quint64 , mouseCount , 0 ) PROPERTY( QPoint , mousePoint , QPoint() ) - // disabled coco end private: void initConnections(); Index: sources/view/confirm/VConfirm.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/view/confirm/VConfirm.h (.../VConfirm.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/view/confirm/VConfirm.h (.../VConfirm.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -52,12 +52,9 @@ // ********** DYNAMIC PROPERTIES: The properties which need to be updated by each confirm message received. ********** // READONLY( bool , needConfirm , false) - // disabled coco begin validated: // The property adjustment_Triggered has to be always true // and to always trigger the change event to work as a notifier for GUI - // has been manually tested that it works perfectly fine TRIGGER ( bool , adjustment , 0) - // disabled coco end PROPERTY(quint32 , id , 0) PROPERTY(quint32 , command , 0) Index: sources/view/dg/data/VDGAccelerometerData.cpp =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/view/dg/data/VDGAccelerometerData.cpp (.../VDGAccelerometerData.cpp) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/view/dg/data/VDGAccelerometerData.cpp (.../VDGAccelerometerData.cpp) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -17,10 +17,6 @@ // Project #include "GuiController.h" -// disabled coco begin validated: -// FIXME: this model was only for the Diagnostic use, and has been removed, -// Should be removed from the UI Software if not being used anymore - VIEW_DEF(VDGAccelerometer, DGAccelerometerData) void VDGAccelerometer::onActionReceive(const DGAccelerometerData &vData) { @@ -34,5 +30,3 @@ yTilt (vData.mYTilt ); zTilt (vData.mZTilt ); } - -// disabled coco end Index: sources/view/dg/data/VDGAccelerometerData.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/view/dg/data/VDGAccelerometerData.h (.../VDGAccelerometerData.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/view/dg/data/VDGAccelerometerData.h (.../VDGAccelerometerData.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -22,10 +22,6 @@ #include "VView.h" #include "MDGAccelerometerData.h" -// disabled coco begin validated: -// FIXME: this model was only for the Diagnostic use, and has been removed, -// Should be removed from the UI Software if not being used anymore - // namespace namespace View { @@ -52,5 +48,3 @@ VIEW_DEC(VDGAccelerometer, DGAccelerometerData) }; } - -// disabled coco end Index: sources/view/dg/data/post/VDGPOSTData.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/view/dg/data/post/VDGPOSTData.h (.../VDGPOSTData.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/view/dg/data/post/VDGPOSTData.h (.../VDGPOSTData.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -39,12 +39,10 @@ // friends friend class ::tst_views; - // disabled coco begin validated: // The property adjustment_Triggered has to be always true // and to always trigger the change event to work as a notifier for GUI - // has been manually tested that it works perfectly fine TRIGGER ( bool , adjustment , 0) - // disabled coco end + CONSTANT(quint32 , itemCount , /*GuiDDPOSTStates::DG_POST_STATE_COMPLETED -*/ 1 ) PROPERTY(bool , start , 0) Index: sources/view/hd/adjustment/common/VCommonAdjustmentVitals.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/view/hd/adjustment/common/VCommonAdjustmentVitals.h (.../VCommonAdjustmentVitals.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/view/hd/adjustment/common/VCommonAdjustmentVitals.h (.../VCommonAdjustmentVitals.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -40,12 +40,9 @@ int _counter_sec = 0; int _counter_min = 0; - // disabled coco begin validated: // The property adjustment_Triggered has to be always true // and to always trigger the change event to work as a notifier for GUI - // has been manually tested that it works perfectly fine TRIGGER( bool , adjustment , 0) - // disabled coco end // Vitals data // constant range variables / units / ... Index: sources/view/hd/adjustment/posttreatment/VPostTreatmentAdjustDisposablesRemovalConfirm.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/view/hd/adjustment/posttreatment/VPostTreatmentAdjustDisposablesRemovalConfirm.h (.../VPostTreatmentAdjustDisposablesRemovalConfirm.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/view/hd/adjustment/posttreatment/VPostTreatmentAdjustDisposablesRemovalConfirm.h (.../VPostTreatmentAdjustDisposablesRemovalConfirm.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -37,12 +37,9 @@ // friends friend class ::tst_views; - // disabled coco begin validated: // The property adjustment_Triggered has to be always true // and to always trigger the change event to work as a notifier for GUI - // has been manually tested that it works perfectly fine TRIGGER( bool , adjustment , 0) - // disabled coco end VIEW_DEC_CLASS_ADJUSTMENT(VPostTreatmentAdjustmentDisposablesRemovalConfirm, AdjustDisposablesRemovalConfirmResponseData) Index: sources/view/hd/adjustment/posttreatment/VPostTreatmentAdjustPatientDisconnectionConfirm.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/view/hd/adjustment/posttreatment/VPostTreatmentAdjustPatientDisconnectionConfirm.h (.../VPostTreatmentAdjustPatientDisconnectionConfirm.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/view/hd/adjustment/posttreatment/VPostTreatmentAdjustPatientDisconnectionConfirm.h (.../VPostTreatmentAdjustPatientDisconnectionConfirm.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -37,12 +37,9 @@ // friends friend class ::tst_views; - // disabled coco begin validated: // The property adjustment_Triggered has to be always true // and to always trigger the change event to work as a notifier for GUI - // has been manually tested that it works perfectly fine TRIGGER( bool , adjustment , 0) - // disabled coco end VIEW_DEC_CLASS_ADJUSTMENT(VPostTreatmentAdjustmentPatientDisconnectionConfirm, AdjustPatientDisconnectionConfirmResponseData) Index: sources/view/hd/adjustment/posttreatment/VPostTreatmentAdjustTreatmentLog.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/view/hd/adjustment/posttreatment/VPostTreatmentAdjustTreatmentLog.h (.../VPostTreatmentAdjustTreatmentLog.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/view/hd/adjustment/posttreatment/VPostTreatmentAdjustTreatmentLog.h (.../VPostTreatmentAdjustTreatmentLog.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -43,12 +43,9 @@ // friends friend class ::tst_views; - // disabled coco begin validated: // The property adjustment_Triggered has to be always true // and to always trigger the change event to work as a notifier for GUI - // has been manually tested that it works perfectly fine TRIGGER( bool , adjustment , 0) - // disabled coco end PROPERTY(bool , heparinDispensingRateOff , true) PROPERTY(bool , heparinBolusVolumeOff , true) Index: sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentConsumablesConfirm.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentConsumablesConfirm.h (.../VPreTreatmentAdjustmentConsumablesConfirm.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentConsumablesConfirm.h (.../VPreTreatmentAdjustmentConsumablesConfirm.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -36,12 +36,9 @@ // friends friend class ::tst_views; - // disabled coco begin validated: // The property adjustment_Triggered has to be always true // and to always trigger the change event to work as a notifier for GUI - // has been manually tested that it works perfectly fine TRIGGER( bool , adjustment , 0) - // disabled coco end VIEW_DEC_CLASS(VPreTreatmentAdjustmentConsumablesConfirm) Index: sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentDisposablesConfirm.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentDisposablesConfirm.h (.../VPreTreatmentAdjustmentDisposablesConfirm.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentDisposablesConfirm.h (.../VPreTreatmentAdjustmentDisposablesConfirm.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -37,12 +37,9 @@ // friends friend class ::tst_views; - // disabled coco begin validated: // The property adjustment_Triggered has to be always true // and to always trigger the change event to work as a notifier for GUI - // has been manually tested that it works perfectly fine TRIGGER( bool , adjustment , 0) - // disabled coco end VIEW_DEC_CLASS_ADJUSTMENT(VPreTreatmentAdjustmentDisposablesConfirm, AdjustDisposablesConfirmResponseData) Index: sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentDisposablesPrime.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentDisposablesPrime.h (.../VPreTreatmentAdjustmentDisposablesPrime.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentDisposablesPrime.h (.../VPreTreatmentAdjustmentDisposablesPrime.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -37,12 +37,9 @@ // friends friend class ::tst_views; - // disabled coco begin validated: // The property adjustment_Triggered has to be always true // and to always trigger the change event to work as a notifier for GUI - // has been manually tested that it works perfectly fine TRIGGER( bool , adjustment , 0) - // disabled coco end VIEW_DEC_CLASS_ADJUSTMENT(VPreTreatmentAdjustmentDisposablesPrime, AdjustDisposablesPrimeResponseData) Index: sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentInitTreatment.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentInitTreatment.h (.../VPreTreatmentAdjustmentInitTreatment.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentInitTreatment.h (.../VPreTreatmentAdjustmentInitTreatment.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -37,12 +37,9 @@ // friends friend class ::tst_views; - // disabled coco begin validated: // The property adjustment_Triggered has to be always true // and to always trigger the change event to work as a notifier for GUI - // has been manually tested that it works perfectly fine TRIGGER( bool , adjustment , 0) - // disabled coco end VIEW_DEC_CLASS_ADJUSTMENT(VPreTreatmentAdjustmentInitTreatment, AdjustInitTreatmentResponseData) Index: sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentPatientConnectionBegin.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentPatientConnectionBegin.h (.../VPreTreatmentAdjustmentPatientConnectionBegin.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentPatientConnectionBegin.h (.../VPreTreatmentAdjustmentPatientConnectionBegin.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -37,12 +37,9 @@ // friends friend class ::tst_views; - // disabled coco begin validated: // The property adjustment_Triggered has to be always true // and to always trigger the change event to work as a notifier for GUI - // has been manually tested that it works perfectly fine TRIGGER( bool , adjustment , 0) - // disabled coco end VIEW_DEC_CLASS_ADJUSTMENT(VPreTreatmentAdjustmentPatientConnectionBegin, AdjustPatientConnectionBeginResponseData) Index: sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentPatientConnectionConfirm.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentPatientConnectionConfirm.h (.../VPreTreatmentAdjustmentPatientConnectionConfirm.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentPatientConnectionConfirm.h (.../VPreTreatmentAdjustmentPatientConnectionConfirm.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -37,12 +37,9 @@ // friends friend class ::tst_views; - // disabled coco begin validated: // The property adjustment_Triggered has to be always true // and to always trigger the change event to work as a notifier for GUI - // has been manually tested that it works perfectly fine TRIGGER( bool , adjustment , 0) - // disabled coco end VIEW_DEC_CLASS_ADJUSTMENT(VPreTreatmentAdjustmentPatientConnectionConfirm, AdjustPatientConnectionConfirmResponseData) Index: sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentStartTreatment.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentStartTreatment.h (.../VPreTreatmentAdjustmentStartTreatment.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentStartTreatment.h (.../VPreTreatmentAdjustmentStartTreatment.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -37,12 +37,9 @@ // friends friend class ::tst_views; - // disabled coco begin validated: // The property adjustment_Triggered has to be always true // and to always trigger the change event to work as a notifier for GUI - // has been manually tested that it works perfectly fine TRIGGER( bool , adjustment , 0) - // disabled coco end VIEW_DEC_CLASS_ADJUSTMENT(VPreTreatmentAdjustmentStartTreatment, AdjustStartTreatmentResponseData) Index: sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentUltrafiltrationInit.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentUltrafiltrationInit.h (.../VPreTreatmentAdjustmentUltrafiltrationInit.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentUltrafiltrationInit.h (.../VPreTreatmentAdjustmentUltrafiltrationInit.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -39,12 +39,9 @@ AdjustUltrafiltrationInitRequestData _data; - // disabled coco begin validated: // The property adjustment_Triggered has to be always true // and to always trigger the change event to work as a notifier for GUI - // has been manually tested that it works perfectly fine TRIGGER( bool , adjustment , 0) - // disabled coco end // Treatment Ultrafiltration data PROPERTY( float , volume , 0) Index: sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentWaterSample.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentWaterSample.h (.../VPreTreatmentAdjustmentWaterSample.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentWaterSample.h (.../VPreTreatmentAdjustmentWaterSample.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -37,12 +37,9 @@ // friends friend class ::tst_views; - // disabled coco begin validated: // The property adjustment_Triggered has to be always true // and to always trigger the change event to work as a notifier for GUI - // has been manually tested that it works perfectly fine TRIGGER( bool , adjustment , 0) - // disabled coco end VIEW_DEC_CLASS_ADJUSTMENT(VPreTreatmentAdjustmentWaterSample, AdjustWaterSampleResponseData) Index: sources/view/hd/adjustment/treatment/VTreatmentAdjustmentDuration.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/view/hd/adjustment/treatment/VTreatmentAdjustmentDuration.h (.../VTreatmentAdjustmentDuration.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/view/hd/adjustment/treatment/VTreatmentAdjustmentDuration.h (.../VTreatmentAdjustmentDuration.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -39,12 +39,9 @@ AdjustDurationRequestData _data; - // disabled coco begin validated: // The property adjustment_Triggered has to be always true // and to always trigger the change event to work as a notifier for GUI - // has been manually tested that it works perfectly fine TRIGGER( bool , adjustment , 0) - // disabled coco end // Treatment Duration data PROPERTY( quint32 , duration , 0) Index: sources/view/hd/adjustment/treatment/VTreatmentAdjustmentEnd.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/view/hd/adjustment/treatment/VTreatmentAdjustmentEnd.h (.../VTreatmentAdjustmentEnd.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/view/hd/adjustment/treatment/VTreatmentAdjustmentEnd.h (.../VTreatmentAdjustmentEnd.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -39,12 +39,9 @@ AdjustTreatmentEndRequestData _data; - // disabled coco begin validated: // The property adjustment_Triggered has to be always true // and to always trigger the change event to work as a notifier for GUI - // has been manually tested that it works perfectly fine TRIGGER( bool , adjustment , 0 ) - // disabled coco end VIEW_DEC_CLASS_ADJUSTMENT(VTreatmentAdjustmentEnd, AdjustTreatmentEndResponseData) Index: sources/view/hd/adjustment/treatment/VTreatmentAdjustmentFlows.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/view/hd/adjustment/treatment/VTreatmentAdjustmentFlows.h (.../VTreatmentAdjustmentFlows.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/view/hd/adjustment/treatment/VTreatmentAdjustmentFlows.h (.../VTreatmentAdjustmentFlows.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -39,12 +39,9 @@ AdjustBloodDialysateRequestData _data; - // disabled coco begin validated: // The property adjustment_Triggered has to be always true // and to always trigger the change event to work as a notifier for GUI - // has been manually tested that it works perfectly fine TRIGGER( bool , adjustment , 0) - // disabled coco end // Treatment Blood/Dialysate Flow data PROPERTY( quint32 , bloodFlow_FlowSetPoint , 0) Index: sources/view/hd/adjustment/treatment/VTreatmentAdjustmentHeparin.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/view/hd/adjustment/treatment/VTreatmentAdjustmentHeparin.h (.../VTreatmentAdjustmentHeparin.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/view/hd/adjustment/treatment/VTreatmentAdjustmentHeparin.h (.../VTreatmentAdjustmentHeparin.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -39,12 +39,9 @@ AdjustHeparinRequestData _data; - // disabled coco begin validated: // The property adjustment_Triggered has to be always true // and to always trigger the change event to work as a notifier for GUI - // has been manually tested that it works perfectly fine TRIGGER( bool , adjustment , 0 ) - // disabled coco end VIEW_DEC_CLASS_ADJUSTMENT(VTreatmentAdjustmentHeparin, AdjustHeparinResponseData) Index: sources/view/hd/adjustment/treatment/VTreatmentAdjustmentRecirculate.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/view/hd/adjustment/treatment/VTreatmentAdjustmentRecirculate.h (.../VTreatmentAdjustmentRecirculate.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/view/hd/adjustment/treatment/VTreatmentAdjustmentRecirculate.h (.../VTreatmentAdjustmentRecirculate.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -39,12 +39,9 @@ AdjustRecirculateRequestData _data; - // disabled coco begin validated: // The property adjustment_Triggered has to be always true // and to always trigger the change event to work as a notifier for GUI - // has been manually tested that it works perfectly fine TRIGGER( bool , adjustment , 0 ) - // disabled coco end VIEW_DEC_CLASS_ADJUSTMENT(VTreatmentAdjustmentRecirculate, AdjustRecirculateResponseData) Index: sources/view/hd/adjustment/treatment/VTreatmentAdjustmentRinseback.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/view/hd/adjustment/treatment/VTreatmentAdjustmentRinseback.h (.../VTreatmentAdjustmentRinseback.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/view/hd/adjustment/treatment/VTreatmentAdjustmentRinseback.h (.../VTreatmentAdjustmentRinseback.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -39,12 +39,9 @@ AdjustRinsebackRequestData _data; - // disabled coco begin validated: // The property adjustment_Triggered has to be always true // and to always trigger the change event to work as a notifier for GUI - // has been manually tested that it works perfectly fine TRIGGER( bool , adjustment , 0 ) - // disabled coco end VIEW_DEC_CLASS_ADJUSTMENT(VTreatmentAdjustmentRinseback, AdjustRinsebackResponseData) Index: sources/view/hd/adjustment/treatment/VTreatmentAdjustmentSaline.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/view/hd/adjustment/treatment/VTreatmentAdjustmentSaline.h (.../VTreatmentAdjustmentSaline.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/view/hd/adjustment/treatment/VTreatmentAdjustmentSaline.h (.../VTreatmentAdjustmentSaline.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -39,12 +39,9 @@ AdjustSalineRequestData _data; - // disabled coco begin validated: // The property adjustment_Triggered has to be always true // and to always trigger the change event to work as a notifier for GUI - // has been manually tested that it works perfectly fine TRIGGER( bool , adjustment , 0 ) - // disabled coco end PROPERTY( qint32 , target , 0 ) Index: sources/view/hd/adjustment/treatment/VTreatmentAdjustmentUltrafiltrationConfirm.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/view/hd/adjustment/treatment/VTreatmentAdjustmentUltrafiltrationConfirm.h (.../VTreatmentAdjustmentUltrafiltrationConfirm.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/view/hd/adjustment/treatment/VTreatmentAdjustmentUltrafiltrationConfirm.h (.../VTreatmentAdjustmentUltrafiltrationConfirm.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -39,21 +39,14 @@ AdjustUltrafiltrationConfirmRequestData _data; - // disabled coco begin validated: // The property adjustment_Triggered has to be always true // and to always trigger the change event to work as a notifier for GUI - // has been manually tested that it works perfectly fine TRIGGER( bool , adjustment , 0) - // disabled coco end // Treatment Ultrafiltration data PROPERTY( float , volume , 0) - // disabled coco begin validated: Manually validated - // Duration is not used since will be passed each second by TreatmentTime message PROPERTY( quint32 , duration , 0) - // Rate has not been decided to be used anywhere yet. PROPERTY( float , rate , 0) - // disabled coco end VIEW_DEC_CLASS_ADJUSTMENT(VTreatmentAdjustmentUltrafiltrationConfirm, AdjustUltrafiltrationConfirmResponseData) Index: sources/view/hd/adjustment/treatment/VTreatmentAdjustmentUltrafiltrationEdit.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/view/hd/adjustment/treatment/VTreatmentAdjustmentUltrafiltrationEdit.h (.../VTreatmentAdjustmentUltrafiltrationEdit.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/view/hd/adjustment/treatment/VTreatmentAdjustmentUltrafiltrationEdit.h (.../VTreatmentAdjustmentUltrafiltrationEdit.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -39,12 +39,9 @@ AdjustUltrafiltrationEditRequestData _data; - // disabled coco begin validated: // The property adjustment_Triggered has to be always true // and to always trigger the change event to work as a notifier for GUI - // has been manually tested that it works perfectly fine TRIGGER( bool , adjustment , 0) - // disabled coco end // Treatment Ultrafiltration data PROPERTY( float , volume , 0) Index: sources/view/hd/adjustment/treatment/VTreatmentAdjustmentUltrafiltrationState.cpp =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/view/hd/adjustment/treatment/VTreatmentAdjustmentUltrafiltrationState.cpp (.../VTreatmentAdjustmentUltrafiltrationState.cpp) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/view/hd/adjustment/treatment/VTreatmentAdjustmentUltrafiltrationState.cpp (.../VTreatmentAdjustmentUltrafiltrationState.cpp) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -29,8 +29,6 @@ adjustment_Accepted ( vData.mAccepted ); adjustment_Reason ( vData.mReason ); - state ( vData.mUFState ); - // *** has to be the last to let the information to be set and then emit the signal *** // *** otherwise will use the previous values before being set. *** // *** use this trigger to make sure you have all the properties with updated values *** Index: sources/view/hd/adjustment/treatment/VTreatmentAdjustmentUltrafiltrationState.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/view/hd/adjustment/treatment/VTreatmentAdjustmentUltrafiltrationState.h (.../VTreatmentAdjustmentUltrafiltrationState.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/view/hd/adjustment/treatment/VTreatmentAdjustmentUltrafiltrationState.h (.../VTreatmentAdjustmentUltrafiltrationState.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -39,21 +39,10 @@ AdjustUltrafiltrationStateRequestData _data; - // disabled coco begin validated: // The property adjustment_Triggered has to be always true // and to always trigger the change event to work as a notifier for GUI - // has been manually tested that it works perfectly fine TRIGGER( bool , adjustment , 0) - // disabled coco end - // disabled coco begin validated: Manually tested - // This property should not be used in QML since it need exposed enum - // exposed enum usage in QML is not suggested since QML will not error out on any issue - // kept for consistency and debugging use cases - // Look at the VHDTreatmentStates ultrafiltration properties - PROPERTY( qint32 , state , 0) - // disabled coco end - VIEW_DEC_CLASS_ADJUSTMENT(VTreatmentAdjustmentUltrafiltrationState, AdjustUltrafiltrationStateResponseData) // ---------- Pause Ultrafiltration Index: sources/view/hd/alarm/VAlarmActiveList.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/view/hd/alarm/VAlarmActiveList.h (.../VAlarmActiveList.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/view/hd/alarm/VAlarmActiveList.h (.../VAlarmActiveList.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -41,12 +41,9 @@ QMap _alarmTitles; - // disabled coco begin validated: // The property adjustment_Triggered has to be always true // and to always trigger the change event to work as a notifier for GUI - // has been manually tested that it works perfectly fine TRIGGER( bool , adjustment , 0) - // disabled coco end PROPERTY( quint32, a0ID , 0 ) PROPERTY( quint32, a1ID , 0 ) Index: sources/view/hd/alarm/VAlarmStatus.cpp =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/view/hd/alarm/VAlarmStatus.cpp (.../VAlarmStatus.cpp) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/view/hd/alarm/VAlarmStatus.cpp (.../VAlarmStatus.cpp) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -25,9 +25,6 @@ ACTION_VIEW_CONNECTION(SettingsData ); ADJUST_VIEW_CONNECTION(AlarmSilenceRequestData ); ADJUST_VIEW_CONNECTION(AlarmUserActionRequestData ); - /* // disabled coco begin validated: Manually tested. This model class is a placeholder and there is no use case for this now. - ADJUST_VIEW_CONNECTION(AlarmClearedConditionRequestData ); - // disabled coco end */ } /*! @@ -86,36 +83,17 @@ } /*! - * \brief VAlarmStatus::doClearCondition - * \details Send out a request to notify alarm condition is cleared - * \note this is an example of how to do the clear condition - * later it may require to have a parameter or it needs to be different slots - * currently there is no use case for this - */ -void View::VAlarmStatus::doClearCondition() -{ - // disabled coco begin validated: Manually tested. This model class is a placeholder for the message 63(0x3F00) and there is no use case for this now. - AlarmClearedConditionRequestData data; - data.alarmID = GuiAlarmID::ALARM_ID_TD_COMM_TIMEOUT; - emit didAdjustment(data); -} -// disabled coco end - -/*! * \brief VAlarmStatus::onActionReceive * \details the message received handler * \param vData - Data of the received message */ void VAlarmStatus::onActionReceive(const AlarmStatusData &vData) { GuiAlarmID alarmID = static_cast(vData.mTop); - // disabled coco begin validated: the gDisableTimeout has meant to only being used for debugging purposes. - // has been manually tested during debugging which works fine as expected. if (alarmID == GuiAlarmID::ALARM_ID_TD_COMM_TIMEOUT && gDisableTimeout) { LOG_DEBUG(tr("Suppressing HD communication timeout.")); return; } - // disabled coco end //// ------ HIDE THE DIALOG - if has NO the alarm ------ // DENBUG-182: Phantom Alarm Screen Appears After Clearing Last Alarm Index: sources/view/hd/alarm/VAlarmStatus.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/view/hd/alarm/VAlarmStatus.h (.../VAlarmStatus.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/view/hd/alarm/VAlarmStatus.h (.../VAlarmStatus.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -63,7 +63,6 @@ // ********** DYNAMIC PROPERTIES: The properties which need to be updated by each alarm message received. ********** // READONLY( bool , hasAlarm , false) - // disabled coco begin validated: Has been validated manually PROPERTY( quint32 , alarm_Priority , 0) PROPERTY( quint32 , alarm_AlarmID , 0) PROPERTY( quint32 , alarm_EscalateIn , 0) @@ -82,7 +81,6 @@ // 3 reserved flags are here... // PROPERTY( bool , alarm_Flag_noMinimize , false) PROPERTY( bool , alarm_Flag_alarmsCondition , false) - // disabled coco end // ********** STATIC PROPERTIES: The properties which need to be updated by each alarm message received. ********** // Q_PROPERTY(QString title READ title NOTIFY alarm_AlarmIDChanged ) @@ -97,7 +95,6 @@ ADJUST_TRANSMT_SIGNAL ( AlarmSilenceRequestData ) ADJUST_TRANSMT_SIGNAL ( AlarmUserActionRequestData ) - ADJUST_TRANSMT_SIGNAL ( AlarmClearedConditionRequestData ) private: QString title (); @@ -117,6 +114,5 @@ void doUserActionEnd (); void doUserActionOk (); void doSilence (); - void doClearCondition (); }; } Index: sources/view/hd/data/VHDAccelerometerData.cpp =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/view/hd/data/VHDAccelerometerData.cpp (.../VHDAccelerometerData.cpp) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/view/hd/data/VHDAccelerometerData.cpp (.../VHDAccelerometerData.cpp) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -17,10 +17,6 @@ // Project #include "GuiController.h" -// disabled coco begin validated: -// FIXME: this model was only for the Diagnostic use, and has been removed, -// Should be removed from the UI Software if not being used anymore - VIEW_DEF(VHDAccelerometer, HDAccelerometerData) void VHDAccelerometer::onActionReceive(const HDAccelerometerData &vData) { @@ -34,4 +30,3 @@ yTilt (vData.mYTilt ); zTilt (vData.mZTilt ); } -// disabled coco end Index: sources/view/hd/data/VHDAccelerometerData.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/view/hd/data/VHDAccelerometerData.h (.../VHDAccelerometerData.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/view/hd/data/VHDAccelerometerData.h (.../VHDAccelerometerData.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -22,10 +22,6 @@ #include "VView.h" #include "MHDAccelerometerData.h" -// disabled coco begin validated: -// FIXME: this model was only for the Diagnostic use, and has been removed, -// Should be removed from the UI Software if not being used anymore - // namespace namespace View { @@ -52,5 +48,3 @@ VIEW_DEC(VHDAccelerometer, HDAccelerometerData) }; } - -// disabled coco end Index: sources/view/hd/data/post/VHDPOSTData.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/view/hd/data/post/VHDPOSTData.h (.../VHDPOSTData.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/view/hd/data/post/VHDPOSTData.h (.../VHDPOSTData.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -39,12 +39,9 @@ // friends friend class ::tst_views; - // disabled coco begin validated: // The property adjustment_Triggered has to be always true // and to always trigger the change event to work as a notifier for GUI - // has been manually tested that it works perfectly fine TRIGGER ( bool , adjustment , 0) - // disabled coco end // the last "test" item is the item just before the complete state. // UI doesn't care about the the complete or fail state in Single post messages, Index: sources/view/hd/data/treatment/VHDTreatmentStatesData.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/view/hd/data/treatment/VHDTreatmentStatesData.h (.../VHDTreatmentStatesData.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/view/hd/data/treatment/VHDTreatmentStatesData.h (.../VHDTreatmentStatesData.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -39,14 +39,11 @@ { Q_OBJECT - // disabled coco begin validated: Manually tested // This property should not be used in QML since it need exposed enum // exposed enum usage in QML is not suggested since QML will not error out on any issue - // kept for consistency and debugging use cases PROPERTY( quint32, subMode , 0) PROPERTY( quint32, ufState , 0) PROPERTY( quint32, salineState , 0) - // disabled coco end // these groups of properties are mutually exclusive // and if one becomes true the other ones become false at the same time @@ -59,7 +56,6 @@ // ---- Treatment states // ---- Treatment states - Basics - // disabled coco begin validated: Manually tested // not used yet since the Treatment Start/stop/end has not been implemented yet. PROPERTY( bool , txStart , false) ///< TREATMENT_START_STATE = 0 # Start treatment - initialize treatment and go to blood prime state PROPERTY( bool , txBloodPrime , false) ///< TREATMENT_BLOOD_PRIME_STATE = 1 # Prime blood-side of dialyzer with gradual ramp for 1 min. while dialyzer is bypassed. No dialysis or UF taking place. No treatment time. @@ -69,7 +65,6 @@ PROPERTY( bool , txRinseback , false) ///< TREATMENT_RINSEBACK_STATE = 4 # Perform rinseback with saline. Dialyzer bypassed. Dialysate recirculating PROPERTY( bool , txRecirculate , false) ///< TREATMENT_RECIRC_STATE = 5 # Recirculate saline and dialysate while patient disconnected. Blood lines open and shunted. Dialyzer is bypassed PROPERTY( bool , txEnd , false) ///< TREATMENT_END_STATE = 6 # Dialysis has ended. Blood pump slowed. Dialyzer is bypassed. Dialysate is recirculated. User can rinseback - // disabled coco end // ---- Ultrafiltration states PROPERTY( bool , ufPaused , false) ///< UF_PAUSED_STATE = 1 # Paused state of the ultrafiltration state machine Index: sources/view/hd/data/treatment/VTreatmentUltrafiltration.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/view/hd/data/treatment/VTreatmentUltrafiltration.h (.../VTreatmentUltrafiltration.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/view/hd/data/treatment/VTreatmentUltrafiltration.h (.../VTreatmentUltrafiltration.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -36,9 +36,7 @@ { Q_OBJECT - // disabled coco begin validated : Manually validated PROPERTY( float, minimum , 0.000 ) // no message to update this value and is 0 for now. - // disabled coco end PROPERTY( float, maximum , 0.600 ) PROPERTY( float, ultrafiltration_RefUFVol , 0) Index: sources/view/settings/VAdjustmentAlarmVolume.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/view/settings/VAdjustmentAlarmVolume.h (.../VAdjustmentAlarmVolume.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/view/settings/VAdjustmentAlarmVolume.h (.../VAdjustmentAlarmVolume.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -40,12 +40,9 @@ AdjustHDAlarmVolumeRequestData _data; - // disabled coco begin validated: // The property adjustment_Triggered has to be always true // and to always trigger the change event to work as a notifier for GUI - // has been manually tested that it works perfectly fine TRIGGER( bool , adjustment , 0) - // disabled coco end // HD AlarmVolume data PROPERTY( quint8 , hdAlarmVolume , 5) //TODO Needs to get maxVolume from MAdjustHDAlarmVolumeReq Index: sources/view/settings/VAdjustmentInstitutionalRecord.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/view/settings/VAdjustmentInstitutionalRecord.h (.../VAdjustmentInstitutionalRecord.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/view/settings/VAdjustmentInstitutionalRecord.h (.../VAdjustmentInstitutionalRecord.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -72,12 +72,9 @@ - // disabled coco begin validated: // The property adjustment_Triggered has to be always true // and to always trigger the change event to work as a notifier for GUI - // has been manually tested that it works perfectly fine TRIGGER( bool , adjustment , 0) - // disabled coco end PROPERTY(quint32 , minBloodFlowMLPM , 0 ) PROPERTY(quint32 , maxBloodFlowMLPM , 0 ) Index: sources/view/settings/VAdjustmentServiceDates.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/view/settings/VAdjustmentServiceDates.h (.../VAdjustmentServiceDates.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/view/settings/VAdjustmentServiceDates.h (.../VAdjustmentServiceDates.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -40,13 +40,10 @@ const QString _serviceDateFormat = "yyyy/MM/dd"; - // disabled coco begin validated: // The property adjustment_Triggered has to be always true // and to always trigger the change event to work as a notifier for GUI - // has been manually tested that it works perfectly fine TRIGGER( bool , adjustmentHD , 0) TRIGGER( bool , adjustmentDG , 0) - // disabled coco end // Service seconds PROPERTY( quint8 , hdLastServiceEpoch, 0) Index: sources/view/settings/VAdjustmentServiceMode.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/view/settings/VAdjustmentServiceMode.h (.../VAdjustmentServiceMode.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/view/settings/VAdjustmentServiceMode.h (.../VAdjustmentServiceMode.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -37,12 +37,9 @@ friend class ::tst_views; - // disabled coco begin validated: // The property adjustment_Triggered has to be always true // and to always trigger the change event to work as a notifier for GUI - // has been manually tested that it works perfectly fine TRIGGER( bool , adjustment , 0) - // disabled coco end VIEW_DEC_CLASS_ADJUSTMENT(VAdjustmentServiceMode, AdjustServiceModeResponseData) Index: sources/view/settings/VAdjustmentVersions.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/view/settings/VAdjustmentVersions.h (.../VAdjustmentVersions.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/view/settings/VAdjustmentVersions.h (.../VAdjustmentVersions.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -47,13 +47,10 @@ const QString _dgVerDeviceFormat = "%1.%2.%3.%4.%5"; const QString _dgVerFPGAFormat = "%1.%2.%3.%4"; - // disabled coco begin validated: // The property adjustment_Triggered has to be always true // and to always trigger the change event to work as a notifier for GUI - // has been manually tested that it works perfectly fine TRIGGER( bool , adjustmentHD , 0) TRIGGER( bool , adjustmentDG , 0) - // disabled coco end // HD Versions data PROPERTY( quint8 , hdVerMajor , 0) Index: sources/view/settings/VDateTime.cpp =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/view/settings/VDateTime.cpp (.../VDateTime.cpp) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/view/settings/VDateTime.cpp (.../VDateTime.cpp) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -240,9 +240,9 @@ */ void VDateTime::greeting(quint16 vMilitaryTime) { - if ( eMorningMin /* 05:00 AM */ <= vMilitaryTime && vMilitaryTime < eMorningMax /* 12:00 PM */ ) { greeting(tr("Good Morning" )); return; } - if ( eAfternoonMin /* 12:00 PM */ <= vMilitaryTime && vMilitaryTime < eAfternoonMax /* 18:00 PM */ ) { greeting(tr("Good Afternoon")); return; } - /* 18:00 PM */ /* 05:00 AM */ greeting(tr("Good Evening" )); + if ( eMorningMin /* 05:00 AM */ <= vMilitaryTime && vMilitaryTime < eMorningMax /* 12:00 PM */ ) { greeting(tr("Good Morning!" )); return; } + if ( eAfternoonMin /* 12:00 PM */ <= vMilitaryTime && vMilitaryTime < eAfternoonMax /* 18:00 PM */ ) { greeting(tr("Good Afternoon!")); return; } + /* 18:00 PM */ /* 05:00 AM */ greeting(tr("Good Evening!" )); } /*! Index: sources/view/settings/VHDUsageInfo.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/view/settings/VHDUsageInfo.h (.../VHDUsageInfo.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/view/settings/VHDUsageInfo.h (.../VHDUsageInfo.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -39,12 +39,9 @@ HDUsageInfoRequestData _data; - // disabled coco begin validated: // The property adjustment_Triggered has to be always true // and to always trigger the change event to work as a notifier for GUI - // has been manually tested that it works perfectly fine TRIGGER( bool , adjustment , 0) - // disabled coco end //HD Usage Information PROPERTY(QString , totalTxHours , "")