Index: cppcheck.err =================================================================== diff -u -rb6f86ce89361e33d989f6a9d01eb94c344a6384f -rf2763cc4a2f823371fe7d9474d01b93b7de935c1 --- cppcheck.err (.../cppcheck.err) (revision b6f86ce89361e33d989f6a9d01eb94c344a6384f) +++ cppcheck.err (.../cppcheck.err) (revision f2763cc4a2f823371fe7d9474d01b93b7de935c1) @@ -1,4 +1,4 @@ -02/28/2024 17:22 +06/07/2024 13:53 Dara Navaei 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 ; @@ -18,7 +18,7 @@ sources/storage/FileHandler.h:97:17: style: Local variable 'totalSize' shadows outer function [shadowFunction] qint64 totalSize = 0; ^ -sources/storage/FileHandler.h:78:21: note: Shadowed declaration +sources/storage/FileHandler.h:75:21: note: Shadowed declaration static quint64 totalSize(const QFileInfoList &vFileInfoList); ^ sources/storage/FileHandler.h:97:17: note: Shadow variable @@ -30,22 +30,22 @@ sources/storage/FileHandler.h:92:33: style: Variable 'err' is assigned a value that is never used. [unreadVariable] FileCopyError_Enums err = eOK; ^ -sources/ApplicationPost.cpp:164:9: style: Condition '!ok' is always false [knownConditionTrueFalse] +sources/ApplicationPost.cpp:165:9: style: Condition '!ok' is always false [knownConditionTrueFalse] if (! ok) emit didFail(Gui::GuiAlarmID::ALARM_ID_HD_UI_POST_FAILURE_DISPLAY); ^ -sources/ApplicationPost.cpp:162:15: note: Assignment 'ok=true', assigned value is 1 +sources/ApplicationPost.cpp:163:15: note: Assignment 'ok=true', assigned value is 1 bool ok = true; ^ -sources/ApplicationPost.cpp:164:9: note: Condition '!ok' is always false +sources/ApplicationPost.cpp:165:9: note: Condition '!ok' is always false if (! ok) emit didFail(Gui::GuiAlarmID::ALARM_ID_HD_UI_POST_FAILURE_DISPLAY); ^ -sources/ApplicationPost.cpp:302:9: style: Condition '!ok' is always false [knownConditionTrueFalse] +sources/ApplicationPost.cpp:303:9: style: Condition '!ok' is always false [knownConditionTrueFalse] if (! ok) emit didFail(Gui::GuiAlarmID::ALARM_ID_HD_UI_POST_FAILURE_SOUND); ^ -sources/ApplicationPost.cpp:300:15: note: Assignment 'ok=true', assigned value is 1 +sources/ApplicationPost.cpp:301:15: note: Assignment 'ok=true', assigned value is 1 bool ok = true; ^ -sources/ApplicationPost.cpp:302:9: note: Condition '!ok' is always false +sources/ApplicationPost.cpp:303:9: note: Condition '!ok' is always false if (! ok) emit didFail(Gui::GuiAlarmID::ALARM_ID_HD_UI_POST_FAILURE_SOUND); ^ 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: @@ -93,37 +93,46 @@ 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; ^ -sources/cloudsync/CloudSyncController.cpp:493:13: style: Consider using std::accumulate algorithm instead of a raw loop. [useStlAlgorithm] +sources/cloudsync/CloudSyncController.cpp:517:13: style: Consider using std::accumulate algorithm instead of a raw loop. [useStlAlgorithm] buf += item.toString(); ^ -sources/cloudsync/CloudSyncController.cpp:266:27: style: Variable 'error' is assigned a value that is never used. [unreadVariable] +sources/cloudsync/CloudSyncController.cpp:284:27: style: Variable 'error' is assigned a value that is never used. [unreadVariable] Errors_Enum error = eError_Unknown; ^ -sources/cloudsync/CloudSyncController.cpp:301:27: style: Variable 'error' is assigned a value that is never used. [unreadVariable] +sources/cloudsync/CloudSyncController.cpp:319:27: style: Variable 'error' is assigned a value that is never used. [unreadVariable] Errors_Enum error = eError_Unknown; ^ -sources/cloudsync/CloudSyncController.cpp:597:27: style: Variable 'error' is assigned a value that is never used. [unreadVariable] +sources/cloudsync/CloudSyncController.cpp:621:27: style: Variable 'error' is assigned a value that is never used. [unreadVariable] Errors_Enum error = eError_Unknown; ^ -sources/cloudsync/CloudSyncController.cpp:652:27: style: Variable 'error' is assigned a value that is never used. [unreadVariable] +sources/cloudsync/CloudSyncController.cpp:676:27: style: Variable 'error' is assigned a value that is never used. [unreadVariable] Errors_Enum error = eError_Unknown; ^ -sources/cloudsync/CloudSyncController.cpp:661:51: style: Variable 'error' is assigned a value that is never used. [unreadVariable] +sources/cloudsync/CloudSyncController.cpp:685: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. ^ -sources/cloudsync/CloudSyncController.cpp:661:76: style: Variable 'args' is assigned a value that is never used. [unreadVariable] +sources/cloudsync/CloudSyncController.cpp:685: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. ^ -sources/cloudsync/CloudSyncController.cpp:683:27: style: Variable 'error' is assigned a value that is never used. [unreadVariable] +sources/cloudsync/CloudSyncController.cpp:707:27: style: Variable 'error' is assigned a value that is never used. [unreadVariable] Errors_Enum error = eError_Unknown; ^ -sources/cloudsync/CloudSyncController.cpp:747:27: style: Variable 'error' is assigned a value that is never used. [unreadVariable] +sources/cloudsync/CloudSyncController.cpp:771:27: style: Variable 'error' is assigned a value that is never used. [unreadVariable] Errors_Enum error = eError_Unknown; ^ -sources/cloudsync/CloudSyncController.cpp:828:27: style: Variable 'error' is assigned a value that is never used. [unreadVariable] +sources/cloudsync/CloudSyncController.cpp:808:27: style: Variable 'error' is assigned a value that is never used. [unreadVariable] Errors_Enum error = eError_Unknown; ^ -sources/device/DeviceController.cpp:868:41: style: Variable 'err' is assigned a value that is never used. [unreadVariable] +sources/cloudsync/CloudSyncController.cpp:855:27: style: Variable 'error' is assigned a value that is never used. [unreadVariable] + Errors_Enum error = eError_Unknown; + ^ +sources/cloudsync/CloudSyncController.cpp:971:27: style: Variable 'error' is assigned a value that is never used. [unreadVariable] + Errors_Enum error = eError_Unknown; + ^ +sources/cloudsync/CloudSyncController.cpp:996:27: style: Variable 'error' is assigned a value that is never used. [unreadVariable] + Errors_Enum error = eError_Unknown; + ^ +sources/device/DeviceController.cpp:878:41: style: Variable 'err' is assigned a value that is never used. [unreadVariable] DeviceError::Scripts_Error_Enum err = DeviceError::eDevice_OK; ^ sources/device/DeviceView.h:73:32: style: The condition 'vData.mAccepted || !vData.mAccepted && vData.mReason!=0' is equivalent to 'vData.mAccepted || vData.mReason!=0'. [redundantCondition] @@ -147,7 +156,7 @@ sources/model/dg/adjustment/settings/MAdjustDGVersionsResponse.h:97:5: warning: Member variable 'MAdjustVersionsDGResponse::_data' is not initialized in the constructor. [uninitMemberVar] MAdjustVersionsDGResponse () { } ^ -sources/model/dg/adjustment/settings/MDuetRoWaterDG.h:120:5: warning: Member variable 'MDuetRoWaterModeDGr::_data' is not initialized in the constructor. [uninitMemberVar] +sources/model/dg/adjustment/settings/MDuetRoWaterDG.h:123:5: warning: Member variable 'MDuetRoWaterModeDGr::_data' is not initialized in the constructor. [uninitMemberVar] MDuetRoWaterModeDGr () { } ^ sources/model/dg/data/MDGAccelerometerData.h:103:5: warning: Member variable 'MDGAccelerometer::_data' is not initialized in the constructor. [uninitMemberVar] @@ -156,10 +165,10 @@ sources/model/dg/data/MDGConductivityData.h:108:5: warning: Member variable 'MDGConductivityData::_data' is not initialized in the constructor. [uninitMemberVar] MDGConductivityData () { } ^ -sources/model/dg/data/MDGDrainPumpData.h:91:5: warning: Member variable 'MDGDrainPump::_data' is not initialized in the constructor. [uninitMemberVar] +sources/model/dg/data/MDGDrainPumpData.h:94:5: warning: Member variable 'MDGDrainPump::_data' is not initialized in the constructor. [uninitMemberVar] MDGDrainPump () { } ^ -sources/model/dg/data/MDGHeatersData.h:102:5: warning: Member variable 'MDGHeaters::_data' is not initialized in the constructor. [uninitMemberVar] +sources/model/dg/data/MDGHeatersData.h:108:5: warning: Member variable 'MDGHeaters::_data' is not initialized in the constructor. [uninitMemberVar] MDGHeaters () {} ^ sources/model/dg/data/MDGLoadCellReadingsData.h:81:5: warning: Member variable 'MDGLoadCellReadings::_data' is not initialized in the constructor. [uninitMemberVar] @@ -243,7 +252,7 @@ sources/model/hd/adjustment/settings/MAdjustHDDateTimeResponse.h:75:5: warning: Member variable 'MAdjustHDDateTimeResponse::_data' is not initialized in the constructor. [uninitMemberVar] MAdjustHDDateTimeResponse () { } ^ -sources/model/hd/adjustment/settings/MAdjustHDInstitutionalRecordResponse.h:108:5: warning: Member variable 'MAdjustInstitutionalRecordResponse::_data' is not initialized in the constructor. [uninitMemberVar] +sources/model/hd/adjustment/settings/MAdjustHDInstitutionalRecordResponse.h:149:5: warning: Member variable 'MAdjustInstitutionalRecordResponse::_data' is not initialized in the constructor. [uninitMemberVar] MAdjustInstitutionalRecordResponse () { } ^ sources/model/hd/adjustment/settings/MAdjustHDServiceDatesResponse.h:74:5: warning: Member variable 'MAdjustServiceDatesHDResponse::_data' is not initialized in the constructor. [uninitMemberVar] @@ -339,7 +348,7 @@ sources/model/hd/data/MHDAirTrapData.h:83:5: warning: Member variable 'MHDAirTrapData::_data' is not initialized in the constructor. [uninitMemberVar] MHDAirTrapData () { } ^ -sources/model/hd/data/MHDBloodLeakData.h:77:5: warning: Member variable 'MHDBloodLeakData::_data' is not initialized in the constructor. [uninitMemberVar] +sources/model/hd/data/MHDBloodLeakData.h:83:5: warning: Member variable 'MHDBloodLeakData::_data' is not initialized in the constructor. [uninitMemberVar] MHDBloodLeakData () { } ^ sources/model/hd/data/MHDOperationModeData.h:75:5: warning: Member variable 'MHDOperationMode::_data' is not initialized in the constructor. [uninitMemberVar] @@ -378,13 +387,13 @@ sources/model/hd/data/pretreatment/MPreTreatmentStatesData.h:111:5: warning: Member variable 'MPreTreatmentStates::_data' is not initialized in the constructor. [uninitMemberVar] MPreTreatmentStates() { } ^ -sources/model/hd/data/treatment/MTreatmentBloodFlowData.h:93:5: warning: Member variable 'MBloodFlow::_data' is not initialized in the constructor. [uninitMemberVar] +sources/model/hd/data/treatment/MTreatmentBloodFlowData.h:96:5: warning: Member variable 'MBloodFlow::_data' is not initialized in the constructor. [uninitMemberVar] MBloodFlow() { } ^ sources/model/hd/data/treatment/MTreatmentBloodPrimeData.h:76:5: warning: Member variable 'MTreatmentBloodPrime::_data' is not initialized in the constructor. [uninitMemberVar] MTreatmentBloodPrime () { } ^ -sources/model/hd/data/treatment/MTreatmentDialysateFlowData.h:95:5: warning: Member variable 'MDialysateFlow::_data' is not initialized in the constructor. [uninitMemberVar] +sources/model/hd/data/treatment/MTreatmentDialysateFlowData.h:98:5: warning: Member variable 'MDialysateFlow::_data' is not initialized in the constructor. [uninitMemberVar] MDialysateFlow() { } ^ sources/model/hd/data/treatment/MTreatmentHeparinData.h:78:5: warning: Member variable 'MTreatmentHeparin::_data' is not initialized in the constructor. [uninitMemberVar] @@ -393,7 +402,7 @@ sources/model/hd/data/treatment/MTreatmentOutletFlowData.h:108:5: warning: Member variable 'MOutletFlow::_data' is not initialized in the constructor. [uninitMemberVar] MOutletFlow () { } ^ -sources/model/hd/data/treatment/MTreatmentPressureOcclusionData.h:93:5: warning: Member variable 'MPressureOcclusion::_data' is not initialized in the constructor. [uninitMemberVar] +sources/model/hd/data/treatment/MTreatmentPressureOcclusionData.h:105:5: warning: Member variable 'MPressureOcclusion::_data' is not initialized in the constructor. [uninitMemberVar] MPressureOcclusion () { } ^ sources/model/hd/data/treatment/MTreatmentRecirculateData.h:78:5: warning: Member variable 'MTreatmentRecirculate::_data' is not initialized in the constructor. [uninitMemberVar] @@ -432,28 +441,25 @@ 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(); ^ -sources/storage/Logger.cpp:43:5: 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 '_logFileNamePrefix' a value by passing the value to the constructor in the initialization list. [useInitializationList] - _logFileNamePrefix = QFileInfo(qApp->applicationFilePath()).baseName(); - ^ -sources/storage/Logger.cpp:236:9: style: Condition 'vUseTempPath' is always false [knownConditionTrueFalse] +sources/storage/Logger.cpp:242:9: style: Condition 'vUseTempPath' is always false [knownConditionTrueFalse] if (vUseTempPath) { ^ -sources/storage/Logger.cpp:233:20: note: Assignment 'vUseTempPath=false', assigned value is 0 +sources/storage/Logger.cpp:239:20: note: Assignment 'vUseTempPath=false', assigned value is 0 vUseTempPath = false; ^ -sources/storage/Logger.cpp:236:9: note: Condition 'vUseTempPath' is always false +sources/storage/Logger.cpp:242:9: note: Condition 'vUseTempPath' is always false if (vUseTempPath) { ^ -sources/storage/Logger.cpp:256:10: style: Condition 'ok' is always true [knownConditionTrueFalse] +sources/storage/Logger.cpp:262:10: style: Condition 'ok' is always true [knownConditionTrueFalse] if ( ok && ! setLogPath(LogType::eLogAppED) ) ok = false; ^ -sources/storage/Logger.cpp:255:15: note: Assignment 'ok=true', assigned value is 1 +sources/storage/Logger.cpp:261:15: note: Assignment 'ok=true', assigned value is 1 bool ok = true; ^ -sources/storage/Logger.cpp:256:10: note: Condition 'ok' is always true +sources/storage/Logger.cpp:262:10: note: Condition 'ok' is always true if ( ok && ! setLogPath(LogType::eLogAppED) ) ok = false; ^ -sources/storage/Logger.cpp:194: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: +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: void f(int x) { int i = 0; @@ -471,12 +477,234 @@ sources/storage/Settings.cpp:34:13: style: Variable 'err' is assigned a value that is never used. [unreadVariable] int err = Settings::Settings_Error::eError_None; ^ -sources/storage/TreatmentLog.cpp:192:41: style: Variable 'mTreatmentDurationFmt' is assigned a value that is never used. [unreadVariable] +sources/storage/TreatmentLog.cpp:196:41: style: Variable 'mTreatmentDurationFmt' is assigned a value that is never used. [unreadVariable] QString mTreatmentDurationFmt = QTime (0, 0).addSecs(int(vData.mTreatmentDuration )).toString(_timeFormat); ^ -sources/storage/TreatmentLog.cpp:193:41: style: Variable 'mActualTreatmentDurationFmt' is assigned a value that is never used. [unreadVariable] +sources/storage/TreatmentLog.cpp:197:41: style: Variable 'mActualTreatmentDurationFmt' is assigned a value that is never used. [unreadVariable] QString mActualTreatmentDurationFmt = QTime (0, 0).addSecs(int(vData.mActualTreatmentDuration )).toString(_timeFormat); ^ +sources/update/Package.h:79: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 'fullPath' a value by passing the value to the constructor in the initialization list. [useInitializationList] + fullPath = rhs.fullPath; + ^ +sources/update/Package.h:80: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 'fileName' a value by passing the value to the constructor in the initialization list. [useInitializationList] + fileName = rhs.fileName; + ^ +sources/update/Package.h:81: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 'packageName' a value by passing the value to the constructor in the initialization list. [useInitializationList] + packageName = rhs.packageName; + ^ +sources/update/Package.h:82: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 'packageVersionInfo' a value by passing the value to the constructor in the initialization list. [useInitializationList] + packageVersionInfo = rhs.packageVersionInfo; + ^ +sources/update/Package.h:83: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 'lastWritten' a value by passing the value to the constructor in the initialization list. [useInitializationList] + lastWritten = rhs.lastWritten; + ^ +sources/update/Package.h:84: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 'reserved' a value by passing the value to the constructor in the initialization list. [useInitializationList] + reserved = rhs.reserved; + ^ +sources/update/Package.h:104: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 'fullPath' a value by passing the value to the constructor in the initialization list. [useInitializationList] + fullPath = fullPathStr; + ^ +sources/update/Package.h:105: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 'fileName' a value by passing the value to the constructor in the initialization list. [useInitializationList] + fileName = fileNameStr; + ^ +sources/update/Package.h:106: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 'packageName' a value by passing the value to the constructor in the initialization list. [useInitializationList] + packageName = packageNameStr; + ^ +sources/update/Package.h:107: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 'packageVersionInfo' a value by passing the value to the constructor in the initialization list. [useInitializationList] + packageVersionInfo = packageVersionInfoStr; + ^ +sources/update/Package.h:108: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 'lastWritten' a value by passing the value to the constructor in the initialization list. [useInitializationList] + lastWritten = lastWrittenTime; + ^ +sources/update/Package.h:109: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 'reserved' a value by passing the value to the constructor in the initialization list. [useInitializationList] + reserved = reservedStr; + ^ +sources/update/MsgLink.h:142:5: style: Class 'MsgLink' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided. [noExplicitConstructor] + MsgLink(float kbps) : + ^ +sources/update/UiProtocol.h:54:5: style: Class 'UiProtocol' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided. [noExplicitConstructor] + UiProtocol(SwUpdateTargetEnum target); + ^ +sources/update/IDataProvider.h:205:25: style: The function 'read' overrides a function in a base class but is not marked with a 'override' specifier. [missingOverride] + virtual std::size_t read(std::size_t offset, unsigned char* pBuffer, std::size_t size_bytes) { + ^ +sources/update/IDataProvider.h:77:25: note: Virtual function in base class + virtual std::size_t read(std::size_t offset, unsigned char* pBuffer, std::size_t size_bytes) { + ^ +sources/update/IDataProvider.h:205:25: note: Function in derived class + virtual std::size_t read(std::size_t offset, unsigned char* pBuffer, std::size_t size_bytes) { + ^ +sources/update/IDataProvider.h:283:25: style: The function 'read' overrides a function in a base class but is not marked with a 'override' specifier. [missingOverride] + virtual std::size_t read(std::size_t offset, unsigned char* pBuffer, std::size_t size_bytes) { + ^ +sources/update/IDataProvider.h:77:25: note: Virtual function in base class + virtual std::size_t read(std::size_t offset, unsigned char* pBuffer, std::size_t size_bytes) { + ^ +sources/update/IDataProvider.h:283:25: note: Function in derived class + virtual std::size_t read(std::size_t offset, unsigned char* pBuffer, std::size_t size_bytes) { + ^ +sources/update/UiProtocol.h:286:18: style: The function '_doUpdate' overrides a function in a base class but is not marked with a 'override' specifier. [missingOverride] + virtual void _doUpdate() { + ^ +sources/update/UiProtocol.h:141:18: note: Virtual function in base class + virtual void _doUpdate(); + ^ +sources/update/UiProtocol.h:286:18: note: Function in derived class + virtual void _doUpdate() { + ^ +sources/update/MsgLink.h:287:67: style: C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts. [cstyleCast] + SwUpdateTargetEnum target = (SwUpdateTargetEnum)(((SwUpdateDataBuffer *)msg)->kind); + ^ +sources/update/MsgLink.h:338:50: style: C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts. [cstyleCast] + SwUpdateResponse *resp = (SwUpdateResponse *)pData; + ^ +sources/update/IDataProvider.h:94:23: style: The scope of the variable 'pBuffer' 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; + if (x) { + // it's safe to move 'int i = 0;' here + for (int n = 0; n < 10; ++n) { + // it is possible but not safe to move 'int i = 0;' here + do_something(&i); + } + } +} +When you see this message it is always safe to reduce the variable scope 1 level. [variableScope] + unsigned char pBuffer[MEMORY_PAGE_SIZE]; + ^ +sources/update/Package.cpp:530:9: performance: Either inefficient or wrong usage of string::find(). string::starts_with() will be faster if string::find's result is compared with 0, because it will not scan the whole string. If your intention is to check that there are no findings in the string, you should compare with std::string::npos. [stlIfStrFind] + if (fullNamePath.find(cacheDirectory) == 0) { + ^ +sources/update/UiProtocol.h:270:22: style: Consider using std::transform algorithm instead of a raw loop. [useStlAlgorithm] + _targets.emplace_back(DataProvider_File(*p)); + ^ +sources/update/Package.cpp:541:9: style: Consider using std::find_if algorithm instead of a raw loop. [useStlAlgorithm] + { + ^ +sources/update/Package.cpp:651:9: style: Consider using std::find_if algorithm instead of a raw loop. [useStlAlgorithm] + { + ^ +sources/update/Package.cpp:668:27: style: Consider using std::find_if algorithm instead of a raw loop. [useStlAlgorithm] + if (pi._isScript) { + ^ +sources/update/Package.cpp:707:30: style: Unused variable: rv [unusedVariable] + std::vector rv; + ^ +sources/update/Package.cpp:564:13: performance: Prefix ++/-- operators should be preferred for non-primitive types. Pre-increment/decrement can be more efficient than post-increment/decrement. Post-increment/decrement usually involves keeping a copy of the previous value around and adds a little extra code. [postfixOperator] + it++) + ^ +sources/update/PackageItem.cpp:187:12: style: Consider using std::accumulate algorithm instead of a raw loop. [useStlAlgorithm] + rv += item.to_xml(); + ^ +sources/update/SignRsa.cpp:123:5: warning: Class 'SignRsa' does not have a operator= which is recommended since it has dynamic memory/resource allocation(s). [noOperatorEq] + _pDigest(new _InternalDigest()), + ^ +sources/update/SignRsa.cpp:454:9: style: The scope of the variable 'result' 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; + if (x) { + // it's safe to move 'int i = 0;' here + for (int n = 0; n < 10; ++n) { + // it is possible but not safe to move 'int i = 0;' here + do_something(&i); + } + } +} +When you see this message it is always safe to reduce the variable scope 1 level. [variableScope] + int result = 0; // Set to 0=invalid. + ^ +sources/update/SignRsa.cpp:434:23: style: Variable 'total' is assigned a value that is never used. [unreadVariable] + std::size_t total = size_bytes; + ^ +sources/update/SignRsa.cpp:440:15: style: Variable 'total' is assigned a value that is never used. [unreadVariable] + total += size_bytes; + ^ +sources/update/SignRsa.cpp:454:16: style: Variable 'result' is assigned a value that is never used. [unreadVariable] + int result = 0; // Set to 0=invalid. + ^ +sources/update/UiProtocol.cpp:288:39: style: C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts. [cstyleCast] + SwUpdateVerifyResponse *pVerify = (SwUpdateVerifyResponse*)_lastRx; + ^ +sources/update/UiProtocol.cpp:297:15: style: C-style pointer casting detected. C++ offers four different kinds of casts as replacements: static_cast, const_cast, dynamic_cast and reinterpret_cast. A C-style cast could evaluate to any of those automatically, thus it is considered safer if the programmer explicitly states which kind of cast is expected. See also: https://www.securecoding.cert.org/confluence/display/cplusplus/EXP05-CPP.+Do+not+use+C-style+casts. [cstyleCast] + pVerify = (SwUpdateVerifyResponse*)_lastRx; + ^ +sources/update/UiSwUpdate.cpp:49:9: error: The address of local variable '_hdUpdate' is accessed at non-zero index. [objectIndex] + _all[HDFPGA] = &_hdFpgaUpdate; + ^ +sources/update/UiSwUpdate.cpp:48:16: note: Address of variable taken here. + _all[HD] = &_hdUpdate; + ^ +sources/update/UiSwUpdate.cpp:49:9: note: The address of local variable '_hdUpdate' is accessed at non-zero index. + _all[HDFPGA] = &_hdFpgaUpdate; + ^ +sources/update/UiSwUpdate.cpp:50:9: error: The address of local variable '_hdUpdate' is accessed at non-zero index. [objectIndex] + _all[DG] = &_dgUpdate; + ^ +sources/update/UiSwUpdate.cpp:48:16: note: Address of variable taken here. + _all[HD] = &_hdUpdate; + ^ +sources/update/UiSwUpdate.cpp:50:9: note: The address of local variable '_hdUpdate' is accessed at non-zero index. + _all[DG] = &_dgUpdate; + ^ +sources/update/UiSwUpdate.cpp:51:9: error: The address of local variable '_hdUpdate' is accessed at non-zero index. [objectIndex] + _all[DGFPGA] = &_dgFpgaUpdate; + ^ +sources/update/UiSwUpdate.cpp:48:16: note: Address of variable taken here. + _all[HD] = &_hdUpdate; + ^ +sources/update/UiSwUpdate.cpp:51:9: note: The address of local variable '_hdUpdate' is accessed at non-zero index. + _all[DGFPGA] = &_dgFpgaUpdate; + ^ +sources/update/UiSwUpdate.cpp:52:9: error: The address of local variable '_hdUpdate' is accessed at non-zero index. [objectIndex] + _all[LINUX] = &_fileUpdate; + ^ +sources/update/UiSwUpdate.cpp:48:16: note: Address of variable taken here. + _all[HD] = &_hdUpdate; + ^ +sources/update/UiSwUpdate.cpp:52:9: note: The address of local variable '_hdUpdate' is accessed at non-zero index. + _all[LINUX] = &_fileUpdate; + ^ +sources/update/UiSwUpdate.cpp:78:35: style: Parameter 'dataProviders' can be declared with const [constParameter] + std::vector & dataProviders, SwUpdate::IEnterBootLoader * pEnterBL) { + ^ +sources/update/VSwUpdate.h:211:10: style: The function 'sendEnterBootloader' overrides a function in a base class but is not marked with a 'override' specifier. [missingOverride] + void sendEnterBootloader(bool asHd); + ^ +sources/update/IEnterBootLoader.h:38:18: note: Virtual function in base class + virtual void sendEnterBootloader(bool asHd) { + ^ +sources/update/VSwUpdate.h:211:10: note: Function in derived class + void sendEnterBootloader(bool asHd); + ^ +sources/update/VSwUpdate.cpp:645:13: style: Condition 'allCompleted' is always true [knownConditionTrueFalse] + if (allCompleted && hadUi) { + ^ +sources/update/VSwUpdate.cpp:640:29: note: Assignment 'allCompleted=true', assigned value is 1 + bool allCompleted = true; + ^ +sources/update/VSwUpdate.cpp:645:13: note: Condition 'allCompleted' is always true + if (allCompleted && hadUi) { + ^ +sources/update/VSwUpdate.cpp:643:19: style: Consider using std::any_of, std::all_of, std::none_of, or std::accumulate algorithm instead of a raw loop. [useStlAlgorithm] + hadUi |= s.targetName == "Files"; + ^ +sources/update/VSwUpdate.cpp:224:31: style: Unused variable: buffer [unusedVariable] + std::stringstream buffer; + ^ +sources/update/VSwUpdate.cpp:504:16: style: Variable 'ignore' is assigned a value that is never used. [unreadVariable] + int ignore = system("reboot\n"); + ^ +sources/update/VSwUpdate.cpp:505:12: style: Variable 'ignore' is assigned a value that is never used. [unreadVariable] + ignore += system("reboot"); + ^ +sources/update/VSwUpdate.cpp:506:12: style: Variable 'ignore' is assigned a value that is never used. [unreadVariable] + ignore += system("./bin/systemctl --message=\"Software upgrade\" reboot"); + ^ +sources/update/VSwUpdate.cpp:822:20: style: Variable 'device' is assigned a value that is never used. [unreadVariable] + QString device = ""; + ^ sources/utility/format.cpp:98:19: style: Consider using std::accumulate algorithm instead of a raw loop. [useStlAlgorithm] mData += fromVariant(item); ^ @@ -513,54 +741,330 @@ sources/view/settings/VSettings.cpp:199:17: style: Consider using std::accumulate algorithm instead of a raw loop. [useStlAlgorithm] keyList += keys.join(""); ^ -unittests/tst_messaging.cpp:294:18: style: Variable 'msg.actionId' is reassigned a value before the old one has been used. [redundantAssignment] +unittests/tst_fileHandler.cpp:95:23: style: Redundant initialization for 'filesCreatedCount'. The initialized value is overwritten before it is read. [redundantInitialization] + filesCreatedCount = helperFunction_createFolderFiles(folderPath, "mock_folder", 1, 10); + ^ +unittests/tst_fileHandler.cpp:85:27: note: filesCreatedCount is initialized + int filesCreatedCount = helperFunction_createFolderFiles(folderPath, "mock_folder", 1, 0); + ^ +unittests/tst_fileHandler.cpp:95:23: note: filesCreatedCount is overwritten + filesCreatedCount = helperFunction_createFolderFiles(folderPath, "mock_folder", 1, 10); + ^ +unittests/tst_messaging.cpp:300:18: style: Variable 'msg.actionId' is reassigned a value before the old one has been used. [redundantAssignment] msg.actionId = Gui::GuiActionType::ID_RawData; ^ -unittests/tst_messaging.cpp:279:18: note: msg.actionId is assigned +unittests/tst_messaging.cpp:285:18: note: msg.actionId is assigned msg.actionId = Gui::GuiActionType::ID_AlarmTriggered; ^ -unittests/tst_messaging.cpp:294:18: note: msg.actionId is overwritten +unittests/tst_messaging.cpp:300:18: note: msg.actionId is overwritten msg.actionId = Gui::GuiActionType::ID_RawData; ^ -unittests/tst_views.cpp:711:26: style: Variable 'action' is assigned a value that is never used. [unreadVariable] - GuiActionType action = GuiActionType::ID_AdjustParametersValidationRsp; +unittests/tst_models.cpp:2494:136: style: Finding the same expression on both sides of an operator is suspicious and might indicate a cut and paste or logic error. Please examine this code carefully to determine if it is correct. [knownConditionTrueFalse] + lastCount = HelperFunctions_tstModel::addRowsForByteData("mTotalTxHours ", errorIndex, 0, (errorIndex-1)*4); errorIndex++; + ^ +unittests/tst_models.cpp:2487:22: note: 'errorIndex' is assigned value '1' here. + int errorIndex = 1; + ^ +unittests/tst_models.cpp:2494:136: note: Same expression on both sides of '-'. + lastCount = HelperFunctions_tstModel::addRowsForByteData("mTotalTxHours ", errorIndex, 0, (errorIndex-1)*4); errorIndex++; + ^ +unittests/tst_models.cpp:861:14: style: Variable 'lastFlag' is assigned a value that is never used. [unreadVariable] + lastFlag = HelperFunctions_tstModel::generate_bitDataRow("mVPd" , errorIndex++, lastFlag + 1); + ^ +unittests/tst_models.cpp:1752:22: style: Variable 'index' is assigned a value that is never used. [unreadVariable] + case 0: { index = 0 ; QVERIFY ( mData.fromByteArray(data)); QCOMPARE( expectedIndex, startIndex ); } break; + ^ +unittests/tst_models.cpp:1753:23: style: Variable 'index' is assigned a value that is never used. [unreadVariable] + case 21: { index = index * sizeof mData._xata.mPriority ; QVERIFY (! mData.fromByteArray(data)); QCOMPARE( expectedIndex, startIndex ); } break; + ^ +unittests/tst_models.cpp:1754:23: style: Variable 'index' is assigned a value that is never used. [unreadVariable] + case 22: { index = index * sizeof mData._xata.mRank ; QVERIFY (! mData.fromByteArray(data)); QCOMPARE( expectedIndex, startIndex ); } break; + ^ +unittests/tst_models.cpp:1755:23: style: Variable 'index' is assigned a value that is never used. [unreadVariable] + case 23: { index = index * sizeof mData._xata.mPriority ; QVERIFY (! mData.fromByteArray(data)); QCOMPARE( expectedIndex, startIndex ); } break; + ^ +unittests/tst_models.cpp:2501:15: style: Variable 'lastCount' is assigned a value that is never used. [unreadVariable] + lastCount = HelperFunctions_tstModel::addTestDataRow_bitRows("mCrc", errorIndex, (errorIndex-1)*4*8, (errorIndex-1)*4); + ^ +unittests/tst_models.cpp:2523:22: style: Variable 'index' is assigned a value that is never used. [unreadVariable] + case 0: { index = 0 ; QVERIFY ( mData.fromByteArray(data)); QCOMPARE( expectedIndex, startIndex ); } break; + ^ +unittests/tst_models.cpp:2524:22: style: Variable 'index' is assigned a value that is never used. [unreadVariable] + case 1: { index = index * sizeof mData._data.mTotalTxHours ; QVERIFY (! mData.fromByteArray(data)); QCOMPARE( expectedIndex, startIndex ); } break; + ^ +unittests/tst_models.cpp:2525:22: style: Variable 'index' is assigned a value that is never used. [unreadVariable] + case 2: { index = index * sizeof mData._data.mTotalTxHoursSinceLastService ; QVERIFY (! mData.fromByteArray(data)); QCOMPARE( expectedIndex, startIndex ); } break; + ^ +unittests/tst_models.cpp:2526:22: style: Variable 'index' is assigned a value that is never used. [unreadVariable] + case 3: { index = index * sizeof mData._data.mEpochOfStartOfLastTx ; QVERIFY (! mData.fromByteArray(data)); QCOMPARE( expectedIndex, startIndex ); } break; + ^ +unittests/tst_models.cpp:2527:22: style: Variable 'index' is assigned a value that is never used. [unreadVariable] + case 4: { index = index * sizeof mData._data.mEpochOfLastRecordReset ; QVERIFY (! mData.fromByteArray(data)); QCOMPARE( expectedIndex, startIndex ); } break; + ^ +unittests/tst_models.cpp:2528:22: style: Variable 'index' is assigned a value that is never used. [unreadVariable] + case 5: { index = index * sizeof mData._data.mCrc ; QVERIFY (! mData.fromByteArray(data)); QCOMPARE( expectedIndex, startIndex ); } break; + ^ +unittests/tst_models.cpp:3203:22: style: Variable 'index' is assigned a value that is never used. [unreadVariable] + case 0: { index = 0 ; QVERIFY ( mData.fromByteArray(data)); QCOMPARE( expectedIndex, startIndex ); } break; + ^ +unittests/tst_models.cpp:3204:22: style: Variable 'index' is assigned a value that is never used. [unreadVariable] + case 1: { index = index * sizeof mData._data.mMicro ; QVERIFY (! mData.fromByteArray(data)); QCOMPARE( expectedIndex, startIndex ); } break; + ^ +unittests/tst_models.cpp:3205:22: style: Variable 'index' is assigned a value that is never used. [unreadVariable] + case 2: { index = index * sizeof mData._data.mMicro ; QVERIFY (! mData.fromByteArray(data)); QCOMPARE( expectedIndex, startIndex ); } break; + ^ +unittests/tst_models.cpp:3206:22: style: Variable 'index' is assigned a value that is never used. [unreadVariable] + case 3: { index = index * sizeof mData._data.mMicro ; QVERIFY (! mData.fromByteArray(data)); QCOMPARE( expectedIndex, startIndex ); } break; + ^ +unittests/tst_models.cpp:3207:22: style: Variable 'index' is assigned a value that is never used. [unreadVariable] + case 4: { index = index * sizeof mData._data.mBuild ; QVERIFY (! mData.fromByteArray(data)); QCOMPARE( expectedIndex, startIndex ); } break; + ^ +unittests/tst_models.cpp:3208:22: style: Variable 'index' is assigned a value that is never used. [unreadVariable] + case 5: { index = index * sizeof mData._data.mFPGAId ; QVERIFY (! mData.fromByteArray(data)); QCOMPARE( expectedIndex, startIndex ); } break; + ^ +unittests/tst_models.cpp:3209:22: style: Variable 'index' is assigned a value that is never used. [unreadVariable] + case 6: { index = index * sizeof mData._data.mFPGAMajor; QVERIFY (! mData.fromByteArray(data)); QCOMPARE( expectedIndex, startIndex ); } break; + ^ +unittests/tst_models.cpp:3210:22: style: Variable 'index' is assigned a value that is never used. [unreadVariable] + case 7: { index = index * sizeof mData._data.mFPGAMinor; QVERIFY (! mData.fromByteArray(data)); QCOMPARE( expectedIndex, startIndex ); } break; + ^ +unittests/tst_models.cpp:3211:22: style: Variable 'index' is assigned a value that is never used. [unreadVariable] + case 8: { index = index * sizeof mData._data.mFPGALab ; QVERIFY (! mData.fromByteArray(data)); QCOMPARE( expectedIndex, startIndex ); } break; + ^ +unittests/tst_models.cpp:3212:22: style: Variable 'index' is assigned a value that is never used. [unreadVariable] + case 9: { index = index * sizeof mData._data.mFPGALab ; QVERIFY (! mData.fromByteArray(data)); QCOMPARE( expectedIndex, startIndex ); } break; + ^ +unittests/tst_models.cpp:3213:22: style: Variable 'index' is assigned a value that is never used. [unreadVariable] + case 10: { index = index * sizeof mData._data.mCompatibilityRev ; QVERIFY (! mData.fromByteArray(data)); QCOMPARE( expectedIndex, startIndex ); } break; + ^ +unittests/tst_models.cpp:3940:22: style: Variable 'index' is assigned a value that is never used. [unreadVariable] + case 0: { index = 0 ; QVERIFY ( mData.fromByteArray(data)); QCOMPARE( expectedIndex, startIndex ); } break; + ^ +unittests/tst_models.cpp:3941:22: style: Variable 'index' is assigned a value that is never used. [unreadVariable] + case 1: { index = index * sizeof mData._data.mMicro ; QVERIFY (! mData.fromByteArray(data)); QCOMPARE( expectedIndex, startIndex ); } break; + ^ +unittests/tst_models.cpp:3942:22: style: Variable 'index' is assigned a value that is never used. [unreadVariable] + case 2: { index = index * sizeof mData._data.mMicro ; QVERIFY (! mData.fromByteArray(data)); QCOMPARE( expectedIndex, startIndex ); } break; + ^ +unittests/tst_models.cpp:3943:22: style: Variable 'index' is assigned a value that is never used. [unreadVariable] + case 3: { index = index * sizeof mData._data.mMicro ; QVERIFY (! mData.fromByteArray(data)); QCOMPARE( expectedIndex, startIndex ); } break; + ^ +unittests/tst_models.cpp:3944:22: style: Variable 'index' is assigned a value that is never used. [unreadVariable] + case 4: { index = index * sizeof mData._data.mBuild ; QVERIFY (! mData.fromByteArray(data)); QCOMPARE( expectedIndex, startIndex ); } break; + ^ +unittests/tst_models.cpp:3945:22: style: Variable 'index' is assigned a value that is never used. [unreadVariable] + case 5: { index = index * sizeof mData._data.mFPGAId ; QVERIFY (! mData.fromByteArray(data)); QCOMPARE( expectedIndex, startIndex ); } break; + ^ +unittests/tst_models.cpp:3946:22: style: Variable 'index' is assigned a value that is never used. [unreadVariable] + case 6: { index = index * sizeof mData._data.mFPGAMajor; QVERIFY (! mData.fromByteArray(data)); QCOMPARE( expectedIndex, startIndex ); } break; + ^ +unittests/tst_models.cpp:3947:22: style: Variable 'index' is assigned a value that is never used. [unreadVariable] + case 7: { index = index * sizeof mData._data.mFPGAMinor; QVERIFY (! mData.fromByteArray(data)); QCOMPARE( expectedIndex, startIndex ); } break; + ^ +unittests/tst_models.cpp:3948:22: style: Variable 'index' is assigned a value that is never used. [unreadVariable] + case 8: { index = index * sizeof mData._data.mFPGALab ; QVERIFY (! mData.fromByteArray(data)); QCOMPARE( expectedIndex, startIndex ); } break; + ^ +unittests/tst_models.cpp:3949:22: style: Variable 'index' is assigned a value that is never used. [unreadVariable] + case 9: { index = index * sizeof mData._data.mFPGALab ; QVERIFY (! mData.fromByteArray(data)); QCOMPARE( expectedIndex, startIndex ); } break; + ^ +unittests/tst_models.cpp:3950:22: style: Variable 'index' is assigned a value that is never used. [unreadVariable] + case 10: { index = index * sizeof mData._data.mCompatibilityRev ; QVERIFY (! mData.fromByteArray(data)); QCOMPARE( expectedIndex, startIndex ); } break; + ^ +unittests/tst_models.cpp:4248:22: style: Variable 'index' is assigned a value that is never used. [unreadVariable] + case 0: { index = 0 ; QVERIFY ( mData.fromByteArray(data)); QCOMPARE( expectedIndex, startIndex ); } break; + ^ +unittests/tst_models.cpp:4249:22: style: Variable 'index' is assigned a value that is never used. [unreadVariable] + case 1: { index = index * sizeof mData._data.mFlags ; QVERIFY (! mData.fromByteArray(data)); QCOMPARE( expectedIndex, startIndex ); } break; + ^ +unittests/tst_models.cpp:4250:22: style: Variable 'index' is assigned a value that is never used. [unreadVariable] + case 2: { index = index * sizeof mData._data.mSystolic ; QVERIFY (! mData.fromByteArray(data)); QCOMPARE( expectedIndex, startIndex ); } break; + ^ +unittests/tst_models.cpp:4251:22: style: Variable 'index' is assigned a value that is never used. [unreadVariable] + case 3: { index = index * sizeof mData._data.mDiastolic ; QVERIFY (! mData.fromByteArray(data)); QCOMPARE( expectedIndex, startIndex ); } break; + ^ +unittests/tst_models.cpp:4252:22: style: Variable 'index' is assigned a value that is never used. [unreadVariable] + case 4: { index = index * sizeof mData._data.mMeanArterial ; QVERIFY (! mData.fromByteArray(data)); QCOMPARE( expectedIndex, startIndex ); } break; + ^ +unittests/tst_models.cpp:4253:22: style: Variable 'index' is assigned a value that is never used. [unreadVariable] + case 5: { index = index * sizeof mData._data.mYear ; QVERIFY (! mData.fromByteArray(data)); QCOMPARE( expectedIndex, startIndex ); } break; + ^ +unittests/tst_models.cpp:4254:22: style: Variable 'index' is assigned a value that is never used. [unreadVariable] + case 6: { index = index * sizeof mData._data.mMonth ; QVERIFY (! mData.fromByteArray(data)); QCOMPARE( expectedIndex, startIndex ); } break; + ^ +unittests/tst_models.cpp:4255:22: style: Variable 'index' is assigned a value that is never used. [unreadVariable] + case 7: { index = index * sizeof mData._data.mDay ; QVERIFY (! mData.fromByteArray(data)); QCOMPARE( expectedIndex, startIndex ); } break; + ^ +unittests/tst_models.cpp:4256:22: style: Variable 'index' is assigned a value that is never used. [unreadVariable] + case 8: { index = index * sizeof mData._data.mHour ; QVERIFY (! mData.fromByteArray(data)); QCOMPARE( expectedIndex, startIndex ); } break; + ^ +unittests/tst_models.cpp:4257:22: style: Variable 'index' is assigned a value that is never used. [unreadVariable] + case 9: { index = index * sizeof mData._data.mMinute ; QVERIFY (! mData.fromByteArray(data)); QCOMPARE( expectedIndex, startIndex ); } break; + ^ +unittests/tst_models.cpp:4258:23: style: Variable 'index' is assigned a value that is never used. [unreadVariable] + case 10: { index = index * sizeof mData._data.mSecond ; QVERIFY (! mData.fromByteArray(data)); QCOMPARE( expectedIndex, startIndex ); } break; + ^ +unittests/tst_models.cpp:4259:23: style: Variable 'index' is assigned a value that is never used. [unreadVariable] + case 11: { index = index * sizeof mData._data.mPulseRate ; QVERIFY (! mData.fromByteArray(data)); QCOMPARE( expectedIndex, startIndex ); } break; + ^ +unittests/tst_models.cpp:4260:23: style: Variable 'index' is assigned a value that is never used. [unreadVariable] + case 12: { index = index * sizeof mData._data.mUserId ; QVERIFY (! mData.fromByteArray(data)); QCOMPARE( expectedIndex, startIndex ); } break; + ^ +unittests/tst_models.cpp:4261:23: style: Variable 'index' is assigned a value that is never used. [unreadVariable] + case 13: { index = index * sizeof mData._data.mStatus ; QVERIFY (! mData.fromByteArray(data)); QCOMPARE( expectedIndex, startIndex ); } break; + ^ +unittests/tst_views.cpp:97:15: warning: Opposite inner 'if' condition leads to a dead code block (outer condition is 'i<15' and inner condition is 'i==15'). [oppositeInnerCondition] + if (i == 15) { + ^ +unittests/tst_views.cpp:76:23: note: outer condition: i<15 + for (int i = 0; i < 15; ++i) { + ^ +unittests/tst_views.cpp:97:15: note: opposite inner condition: i==15 + if (i == 15) { + ^ +unittests/tst_views.cpp:181:26: style: Variable 'obj["bloodFlowRate"]' is reassigned a value before the old one has been used. [redundantAssignment] + obj["bloodFlowRate"] = 500; ^ -unittests/tst_views.cpp:406:0: style: The function 'VCreateTreatment_check_init' is never used. [unusedFunction] +unittests/tst_views.cpp:180:26: note: obj["bloodFlowRate"] is assigned + obj["bloodFlowRate"] = 100; + ^ +unittests/tst_views.cpp:181:26: note: obj["bloodFlowRate"] is overwritten + obj["bloodFlowRate"] = 500; + ^ +unittests/tst_views.cpp:183:30: style: Variable 'obj["dialysateFlowRate"]' is reassigned a value before the old one has been used. [redundantAssignment] + obj["dialysateFlowRate"] = 600; + ^ +unittests/tst_views.cpp:182:30: note: obj["dialysateFlowRate"] is assigned + obj["dialysateFlowRate"] = 100; + ^ +unittests/tst_views.cpp:183:30: note: obj["dialysateFlowRate"] is overwritten + obj["dialysateFlowRate"] = 600; + ^ +unittests/tst_views.cpp:188:31: style: Variable 'obj["heparinBolusVolume"]' is reassigned a value before the old one has been used. [redundantAssignment] + obj["heparinBolusVolume"] = 2000; + ^ +unittests/tst_views.cpp:187:31: note: obj["heparinBolusVolume"] is assigned + obj["heparinBolusVolume"] = 100; + ^ +unittests/tst_views.cpp:188:31: note: obj["heparinBolusVolume"] is overwritten + obj["heparinBolusVolume"] = 2000; + ^ +unittests/tst_views.cpp:191:30: style: Variable 'obj["salineBolusVolume"]' is reassigned a value before the old one has been used. [redundantAssignment] + obj["salineBolusVolume"] = 300; + ^ +unittests/tst_views.cpp:190:30: note: obj["salineBolusVolume"] is assigned + obj["salineBolusVolume"] = 100; + ^ +unittests/tst_views.cpp:191:30: note: obj["salineBolusVolume"] is overwritten + obj["salineBolusVolume"] = 300; + ^ +unittests/tst_views.cpp:207:26: style: Variable 'obj["dialysateTemp"]' is reassigned a value before the old one has been used. [redundantAssignment] + obj["dialysateTemp"] = 39; + ^ +unittests/tst_views.cpp:206:26: note: obj["dialysateTemp"] is assigned + obj["dialysateTemp"] = 35; + ^ +unittests/tst_views.cpp:207:26: note: obj["dialysateTemp"] is overwritten + obj["dialysateTemp"] = 39; + ^ +unittests/tst_views.cpp:209:40: style: Variable 'obj["arterialPressureLimitWindow"]' is reassigned a value before the old one has been used. [redundantAssignment] + obj["arterialPressureLimitWindow"] = 200; + ^ +unittests/tst_views.cpp:208:40: note: obj["arterialPressureLimitWindow"] is assigned + obj["arterialPressureLimitWindow"] = -300; + ^ +unittests/tst_views.cpp:209:40: note: obj["arterialPressureLimitWindow"] is overwritten + obj["arterialPressureLimitWindow"] = 200; + ^ +unittests/tst_views.cpp:213:38: style: Variable 'obj["venousPressureLimitWindow"]' is reassigned a value before the old one has been used. [redundantAssignment] + obj["venousPressureLimitWindow"] = 600; + ^ +unittests/tst_views.cpp:212:38: note: obj["venousPressureLimitWindow"] is assigned + obj["venousPressureLimitWindow"] = -100; + ^ +unittests/tst_views.cpp:213:38: note: obj["venousPressureLimitWindow"] is overwritten + obj["venousPressureLimitWindow"] = 600; + ^ +unittests/tst_views.cpp:219:30: style: Variable 'obj["rinsebackFlowRate"]' is reassigned a value before the old one has been used. [redundantAssignment] + obj["rinsebackFlowRate"] = 150; + ^ +unittests/tst_views.cpp:218:30: note: obj["rinsebackFlowRate"] is assigned + obj["rinsebackFlowRate"] = 50; + ^ +unittests/tst_views.cpp:219:30: note: obj["rinsebackFlowRate"] is overwritten + obj["rinsebackFlowRate"] = 150; + ^ +unittests/tst_views.cpp:472:13: style: Redundant initialization for 'options'. The initialized value is overwritten before it is read. [redundantInitialization] + options = QStringList() << "Dimesol - BC-201"; + ^ +unittests/tst_views.cpp:464:25: note: options is initialized + QStringList options = QStringList() << "08-1251-1" << "08-2251-0" << "08-3251-9"; + ^ +unittests/tst_views.cpp:472:13: note: options is overwritten + options = QStringList() << "Dimesol - BC-201"; + ^ +unittests/tst_views.cpp:480:13: style: Variable 'options' is reassigned a value before the old one has been used. [redundantAssignment] + options = QStringList() << "Nipro Elisio-H 17" + ^ +unittests/tst_views.cpp:472:13: note: options is assigned + options = QStringList() << "Dimesol - BC-201"; + ^ +unittests/tst_views.cpp:480:13: note: options is overwritten + options = QStringList() << "Nipro Elisio-H 17" + ^ +unittests/tst_views.cpp:480:13: style: Variable 'options' is assigned a value that is never used. [unreadVariable] + options = QStringList() << "Nipro Elisio-H 17" + ^ +sources/update/UpdateProtocol.c:341:0: style: The function 'SwUpdate_createSecurityForData' is never used. [unusedFunction] ^ -unittests/tst_views.cpp:660:0: style: The function 'VCreateTreatment_enums' is never used. [unusedFunction] +sources/update/UpdateProtocol.c:372:0: style: The function 'SwUpdate_decodeData' is never used. [unusedFunction] ^ -unittests/tst_views.cpp:708:0: style: The function 'VCreateTreatment_fw_validation_response' is never used. [unusedFunction] +sources/update/UpdateProtocol.c:57:0: style: The function 'SwUpdate_getTarget' is never used. [unusedFunction] ^ -unittests/tst_views.cpp:676:0: style: The function 'VCreateTreatment_json' is never used. [unusedFunction] +sources/update/UpdateProtocol.c:511:0: style: The function 'SwUpdate_isCryptoSignedOk' is never used. [unusedFunction] ^ -unittests/tst_views.cpp:778:0: style: The function 'VCreateTreatment_load_parameter_ranges' is never used. [unusedFunction] +sources/update/UpdateProtocol.c:405:0: style: The function 'SwUpdate_resetVerificationData' is never used. [unusedFunction] ^ -unittests/tst_views.cpp:602:0: style: The function 'VCreateTreatment_save' is never used. [unusedFunction] +sources/update/UpdateProtocol.c:422:0: style: The function 'SwUpdate_updateVerificationData' is never used. [unusedFunction] ^ -unittests/tst_views.cpp:581:0: style: The function 'VCreateTreatment_save_csv' is never used. [unusedFunction] +unittests/tst_views.cpp:398:0: style: The function 'VCreateTreatment_check_init' is never used. [unusedFunction] ^ -unittests/tst_views.cpp:71:0: style: The function 'VCreateTreatment_validation' is never used. [unusedFunction] +unittests/tst_views.cpp:612:0: style: The function 'VCreateTreatment_enums' is never used. [unusedFunction] ^ -unittests/tst_views.cpp:231:0: style: The function 'VCreateTreatment_validation_ranges' is never used. [unusedFunction] +unittests/tst_views.cpp:661:0: style: The function 'VCreateTreatment_fw_validation_response' is never used. [unusedFunction] ^ -unittests/tst_views.cpp:42:0: style: The function 'VTreatmentAdjustmentUltrafiltrationState_text' is never used. [unusedFunction] +unittests/tst_views.cpp:178:0: style: The function 'VCreateTreatment_init_ranges' is never used. [unusedFunction] ^ -unittests/tst_views.cpp:28:0: style: The function 'VTreatmentAdjustmentsResponse_text_NoReason' is never used. [unusedFunction] +unittests/tst_views.cpp:628:0: style: The function 'VCreateTreatment_json' is never used. [unusedFunction] ^ -unittests/tst_views.cpp:35:0: style: The function 'VTreatmentAdjustmentsResponse_text_WAReason' is never used. [unusedFunction] +unittests/tst_views.cpp:729:0: style: The function 'VCreateTreatment_load_parameter_ranges' is never used. [unusedFunction] ^ +unittests/tst_views.cpp:553:0: style: The function 'VCreateTreatment_save' is never used. [unusedFunction] + +^ +unittests/tst_views.cpp:531:0: style: The function 'VCreateTreatment_save_csv' is never used. [unusedFunction] + +^ +unittests/tst_views.cpp:226:0: style: The function 'VCreateTreatment_validation_ranges' is never used. [unusedFunction] + +^ +unittests/tst_views.cpp:30:0: style: The function 'VTreatmentAdjustmentsResponse_text_NoReason' is never used. [unusedFunction] + +^ +unittests/tst_views.cpp:37:0: style: The function 'VTreatmentAdjustmentsResponse_text_WAReason' is never used. [unusedFunction] + +^ sources/view/settings/VSettings.cpp:323:0: style: The function 'checkServicePasswordSet' is never used. [unusedFunction] ^ @@ -570,6 +1074,18 @@ unittests/tst_acknow.cpp:164:0: style: The function 'cleanupTestCase' is never used. [unusedFunction] ^ +sources/update/SignRsa.cpp:385:0: style: The function 'clear_digest' is never used. [unusedFunction] + +^ +sources/update/VSwUpdate.cpp:537:0: style: The function 'clear_progress' is never used. [unusedFunction] + +^ +sources/update/UpdateProtocol.c:209:0: style: The function 'crc32Fast' is never used. [unusedFunction] + +^ +sources/update/SignRsa.cpp:166:0: style: The function 'create_keys' is never used. [unusedFunction] + +^ sources/utility/encryption.cpp:42:0: style: The function 'cryptClose' is never used. [unusedFunction] ^ @@ -591,6 +1107,9 @@ sources/view/hd/alarm/VAlarmStatus.cpp:95:0: style: The function 'doClearCondition' is never used. [unusedFunction] ^ +sources/view/VTreatmentCreate.cpp:73:0: style: The function 'doConfirm' is never used. [unusedFunction] + +^ sources/view/hd/adjustment/treatment/VTreatmentAdjustmentRecirculate.cpp:83:0: style: The function 'doConfirmDisconnect' is never used. [unusedFunction] ^ @@ -600,28 +1119,28 @@ sources/view/hd/adjustment/disinfect/VDisinfectAdjustDisinfect.cpp:90:0: style: The function 'doDisinfectCancel' is never used. [unusedFunction] ^ -sources/view/hd/adjustment/disinfect/VDisinfectAdjustDisinfect.cpp:138:0: style: The function 'doDisinfectChemFlush' is never used. [unusedFunction] +sources/view/hd/adjustment/disinfect/VDisinfectAdjustDisinfect.cpp:137:0: style: The function 'doDisinfectChemFlush' is never used. [unusedFunction] ^ -sources/view/hd/adjustment/disinfect/VDisinfectAdjustDisinfect.cpp:129:0: style: The function 'doDisinfectChemical' is never used. [unusedFunction] +sources/view/hd/adjustment/disinfect/VDisinfectAdjustDisinfect.cpp:128:0: style: The function 'doDisinfectChemical' is never used. [unusedFunction] ^ -sources/view/hd/adjustment/disinfect/VDisinfectAdjustDisinfect.cpp:101:0: style: The function 'doDisinfectClear' is never used. [unusedFunction] +sources/view/hd/adjustment/disinfect/VDisinfectAdjustDisinfect.cpp:100:0: style: The function 'doDisinfectClear' is never used. [unusedFunction] ^ -sources/view/hd/adjustment/disinfect/VDisinfectAdjustDisinfect.cpp:152:0: style: The function 'doDisinfectConfirm' is never used. [unusedFunction] +sources/view/hd/adjustment/disinfect/VDisinfectAdjustDisinfect.cpp:151:0: style: The function 'doDisinfectConfirm' is never used. [unusedFunction] ^ -sources/view/hd/adjustment/disinfect/VDisinfectAdjustDisinfect.cpp:111:0: style: The function 'doDisinfectFlush' is never used. [unusedFunction] +sources/view/hd/adjustment/disinfect/VDisinfectAdjustDisinfect.cpp:110:0: style: The function 'doDisinfectFlush' is never used. [unusedFunction] ^ -sources/view/hd/adjustment/disinfect/VDisinfectAdjustDisinfect.cpp:120:0: style: The function 'doDisinfectHeat' is never used. [unusedFunction] +sources/view/hd/adjustment/disinfect/VDisinfectAdjustDisinfect.cpp:119:0: style: The function 'doDisinfectHeat' is never used. [unusedFunction] ^ sources/view/hd/adjustment/disinfect/VDisinfectAdjustDisinfect.cpp:78:0: style: The function 'doDisinfectInitiate' is never used. [unusedFunction] ^ -sources/view/hd/adjustment/disinfect/VDisinfectAdjustDisinfect.cpp:147:0: style: The function 'doDisinfectROPermeate' is never used. [unusedFunction] +sources/view/hd/adjustment/disinfect/VDisinfectAdjustDisinfect.cpp:146:0: style: The function 'doDisinfectROPermeate' is never used. [unusedFunction] ^ sources/gui/GuiView.cpp:258:0: style: The function 'doExportListInsert' is never used. [unusedFunction] @@ -741,6 +1260,9 @@ sources/view/hd/alarm/VAlarmStatus.cpp:47:0: style: The function 'doUserActionRinseback' is never used. [unusedFunction] ^ +sources/update/Obfuscate.cpp:41:0: style: The function 'encode' is never used. [unusedFunction] + +^ sources/utility/qrcodegen.cpp:372:0: style: The function 'getErrorCorrectionLevel' is never used. [unusedFunction] ^ @@ -768,28 +1290,28 @@ sources/view/settings/VSettings.cpp:298:0: style: The function 'isServicePasswordMatch' is never used. [unusedFunction] ^ -main.cpp:417:0: style: The function 'lockdown' is never used. [unusedFunction] +main.cpp:427:0: style: The function 'lockdown' is never used. [unusedFunction] ^ -unittests/tst_logging.cpp:66:0: style: The function 'logDatum' is never used. [unusedFunction] +unittests/tst_logging.cpp:62:0: style: The function 'logDatum' is never used. [unusedFunction] ^ -unittests/tst_logging.cpp:74:0: style: The function 'logError' is never used. [unusedFunction] +unittests/tst_logging.cpp:70:0: style: The function 'logError' is never used. [unusedFunction] ^ -unittests/tst_logging.cpp:119:0: style: The function 'logError_Unhandled_TreatmentStates' is never used. [unusedFunction] +unittests/tst_logging.cpp:115:0: style: The function 'logError_Unhandled_TreatmentStates' is never used. [unusedFunction] ^ -unittests/tst_logging.cpp:91:0: style: The function 'logError_gDisableUnhandledReport_False' is never used. [unusedFunction] +unittests/tst_logging.cpp:87:0: style: The function 'logError_gDisableUnhandledReport_False' is never used. [unusedFunction] ^ -unittests/tst_logging.cpp:106:0: style: The function 'logError_gDisableUnhandledReport_True' is never used. [unusedFunction] +unittests/tst_logging.cpp:102:0: style: The function 'logError_gDisableUnhandledReport_True' is never used. [unusedFunction] ^ -unittests/tst_logging.cpp:58:0: style: The function 'logEvent' is never used. [unusedFunction] +unittests/tst_logging.cpp:54:0: style: The function 'logEvent' is never used. [unusedFunction] ^ -unittests/tst_logging.cpp:82:0: style: The function 'logUnknown' is never used. [unusedFunction] +unittests/tst_logging.cpp:78:0: style: The function 'logUnknown' is never used. [unusedFunction] ^ sources/utility/qrcodegen.cpp:143:0: style: The function 'makeEci' is never used. [unusedFunction] @@ -801,15 +1323,12 @@ sources/utility/encryption.cpp:48:0: style: The function 'mkfsExt4' is never used. [unusedFunction] ^ -sources/storage/FileHandler.cpp:170:0: style: The function 'moveFolder' is never used. [unusedFunction] +sources/storage/FileHandler.cpp:145:0: style: The function 'moveFolder' is never used. [unusedFunction] ^ -unittests/tst_logging.cpp:149:0: style: The function 'readUnknown' is never used. [unusedFunction] +unittests/tst_logging.cpp:145:0: style: The function 'readUnknown' is never used. [unusedFunction] ^ -sources/storage/FileHandler.cpp:211:0: style: The function 'removeFiles' is never used. [unusedFunction] - -^ sources/bluetooth/BluetoothInterface.cpp:1289:0: style: The function 'requestBattery' is never used. [unusedFunction] ^ @@ -822,24 +1341,42 @@ sources/view/settings/VBluetooth.cpp:79:0: style: The function 'roleNames' is never used. [unusedFunction] ^ -sources/device/DeviceController.cpp:274:0: style: The function 'sdcardSpaceCheck' is never used. [unusedFunction] +sources/update/VSwUpdate.cpp:297:0: style: The function 'rowClicked' is never used. [unusedFunction] ^ -unittests/tst_logging.cpp:135:0: style: The function 'setLogPath_F' is never used. [unusedFunction] +sources/update/SignRsa.cpp:200:0: style: The function 'save_keys' is never used. [unusedFunction] ^ -unittests/tst_logging.cpp:142:0: style: The function 'setLogPath_T' is never used. [unusedFunction] +sources/device/DeviceController.cpp:281:0: style: The function 'sdcardSpaceCheck' is never used. [unusedFunction] ^ -sources/device/DeviceController.cpp:375:0: style: The function 'settingsPartitionSpaceCheck' is never used. [unusedFunction] +unittests/tst_logging.cpp:131:0: style: The function 'setLogPath_F' is never used. [unusedFunction] ^ -sources/MainTimer.cpp:137:0: style: The function 'timerEvent' is never used. [unusedFunction] +unittests/tst_logging.cpp:138:0: style: The function 'setLogPath_T' is never used. [unusedFunction] ^ -sources/storage/FileHandler.cpp:303:0: style: The function 'tmpUsable' is never used. [unusedFunction] +unittests/tst_logging.cpp:151:0: style: The function 'setLogPath_TreatmentType' is never used. [unusedFunction] ^ +sources/device/DeviceController.cpp:382:0: style: The function 'settingsPartitionSpaceCheck' is never used. [unusedFunction] + +^ +sources/update/SignRsa.cpp:407:0: style: The function 'sign_data' is never used. [unusedFunction] + +^ +sources/update/SignRsa.cpp:424:0: style: The function 'sign_file' is never used. [unusedFunction] + +^ +sources/update/VSwUpdate.cpp:275:0: style: The function 'startStopBtnClicked' is never used. [unusedFunction] + +^ +sources/update/Package.cpp:120:0: style: The function 'targetsAvailable' is never used. [unusedFunction] + +^ +sources/MainTimer.cpp:137:0: style: The function 'timerEvent' is never used. [unusedFunction] + +^ unittests/tst_acknow.cpp:62:0: style: The function 'tst_AcknowModel_Init' is never used. [unusedFunction] ^ @@ -861,7 +1398,7 @@ unittests/tst_acknow.cpp:157:0: style: The function 'tst_AcknowModel_onAcknowReceive_Incorrect' is never used. [unusedFunction] ^ -unittests/tst_messaging.cpp:739:0: style: The function 'tst_AlarmGenerator_setBits_OutOfRange' is never used. [unusedFunction] +unittests/tst_messaging.cpp:767:0: style: The function 'tst_AlarmGenerator_setBits_OutOfRange' is never used. [unusedFunction] ^ unittests/tst_initializations.cpp:30:0: style: The function 'tst_ApplicationController_init' is never used. [unusedFunction] @@ -873,60 +1410,63 @@ unittests/tst_canbus.cpp:55:0: style: The function 'tst_CanInterface_Connect_NoError' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:631:0: style: The function 'tst_DGDrainPumpData' is never used. [unusedFunction] +unittests/tst_models.cpp:674:0: style: The function 'tst_DGDrainPumpData' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:617:0: style: The function 'tst_DGDrainPumpData_data' is never used. [unusedFunction] +unittests/tst_models.cpp:640:0: style: The function 'tst_DGDrainPumpData_data' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:792:0: style: The function 'tst_DGHeatersData' is never used. [unusedFunction] +unittests/tst_models.cpp:960:0: style: The function 'tst_DGHeatersData' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:774:0: style: The function 'tst_DGHeatersData_data' is never used. [unusedFunction] +unittests/tst_models.cpp:910:0: style: The function 'tst_DGHeatersData_data' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:842:0: style: The function 'tst_DGLoadCellReadingsData' is never used. [unusedFunction] +unittests/tst_models.cpp:1019:0: style: The function 'tst_DGLoadCellReadingsData' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:820:0: style: The function 'tst_DGLoadCellReadingsData_data' is never used. [unusedFunction] +unittests/tst_models.cpp:997:0: style: The function 'tst_DGLoadCellReadingsData_data' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:668:0: style: The function 'tst_DGOperationMode' is never used. [unusedFunction] +unittests/tst_models.cpp:722:0: style: The function 'tst_DGOperationMode' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:658:0: style: The function 'tst_DGOperationMode_data' is never used. [unusedFunction] +unittests/tst_models.cpp:707:0: style: The function 'tst_DGOperationMode_data' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:588:0: style: The function 'tst_DGPressuresData' is never used. [unusedFunction] +unittests/tst_models.cpp:609:0: style: The function 'tst_DGPressuresData' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:566:0: style: The function 'tst_DGPressuresData_data' is never used. [unusedFunction] +unittests/tst_models.cpp:582:0: style: The function 'tst_DGPressuresData_data' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:538:0: style: The function 'tst_DGROPumpData' is never used. [unusedFunction] +unittests/tst_models.cpp:550:0: style: The function 'tst_DGROPumpData' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:520:0: style: The function 'tst_DGROPumpData_data' is never used. [unusedFunction] +unittests/tst_models.cpp:519:0: style: The function 'tst_DGROPumpData_data' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:712:0: style: The function 'tst_DGReservoirData' is never used. [unusedFunction] +unittests/tst_models.cpp:805:0: style: The function 'tst_DGReservoirData' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:694:0: style: The function 'tst_DGReservoirData_data' is never used. [unusedFunction] +unittests/tst_models.cpp:750:0: style: The function 'tst_DGReservoirData_data' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:925:0: style: The function 'tst_DGTemperaturesData' is never used. [unusedFunction] +unittests/tst_models.cpp:1074:0: style: The function 'tst_DGTemperaturesData' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:871:0: style: The function 'tst_DGTemperaturesData_data' is never used. [unusedFunction] +unittests/tst_models.cpp:1048:0: style: The function 'tst_DGTemperaturesData_data' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:748:0: style: The function 'tst_DGValvesStates' is never used. [unusedFunction] +unittests/tst_models.cpp:865:0: style: The function 'tst_DGValvesStates' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:740:0: style: The function 'tst_DGValvesStates_data' is never used. [unusedFunction] +unittests/tst_models.cpp:842:0: style: The function 'tst_DGValvesStates_data' is never used. [unusedFunction] ^ +unittests/tst_models.cpp:4361:0: style: The function 'tst_DG_headerCoverage' is never used. [unusedFunction] + +^ unittests/tst_initializations.cpp:35:0: style: The function 'tst_DeviceController_init' is never used. [unusedFunction] ^ @@ -996,342 +1536,681 @@ unittests/tst_initializations.cpp:40:0: style: The function 'tst_FrameInterface_init' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:95:0: style: The function 'tst_MAdjustBloodDialysateResponse' is never used. [unusedFunction] +unittests/tst_models.cpp:4463:0: style: The function 'tst_HD_headerCoverage' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:72:0: style: The function 'tst_MAdjustBloodDialysateResponse_data' is never used. [unusedFunction] +unittests/tst_models.cpp:1847:0: style: The function 'tst_MAbstractDynamic' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:206:0: style: The function 'tst_MAdjustDurationResponse' is never used. [unusedFunction] +unittests/tst_models.cpp:1766:0: style: The function 'tst_MAbstractDynamic_data' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:183:0: style: The function 'tst_MAdjustDurationResponse_data' is never used. [unusedFunction] +unittests/tst_models.cpp:99:0: style: The function 'tst_MAdjustBloodDialysateResponse' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:1787:0: style: The function 'tst_MAdjustInitTreatmentResponse' is never used. [unusedFunction] +unittests/tst_models.cpp:76:0: style: The function 'tst_MAdjustBloodDialysateResponse_data' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:1772:0: style: The function 'tst_MAdjustInitTreatmentResponse_data' is never used. [unusedFunction] +unittests/tst_models.cpp:3793:0: style: The function 'tst_MAdjustDGCleaningUsageResponse' is never used. [unusedFunction] ^ +unittests/tst_models.cpp:3778:0: style: The function 'tst_MAdjustDGCleaningUsageResponse_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:3832:0: style: The function 'tst_MAdjustDGDateTimeResponse' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:3828:0: style: The function 'tst_MAdjustDGDateTimeResponse_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:3602:0: style: The function 'tst_MAdjustDisinfectModeResponse' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:3598:0: style: The function 'tst_MAdjustDisinfectModeResponse_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:3571:0: style: The function 'tst_MAdjustDisinfectStartResponse' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:3567:0: style: The function 'tst_MAdjustDisinfectStartResponse_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:3540:0: style: The function 'tst_MAdjustDisposablesConfirmResponse' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:3536:0: style: The function 'tst_MAdjustDisposablesConfirmResponse_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:3509:0: style: The function 'tst_MAdjustDisposablesPrimeResponse' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:3505:0: style: The function 'tst_MAdjustDisposablesPrimeResponse_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:3664:0: style: The function 'tst_MAdjustDisposablesRemovalConfirmResponse' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:3660:0: style: The function 'tst_MAdjustDisposablesRemovalConfirmResponse_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:210:0: style: The function 'tst_MAdjustDurationResponse' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:187:0: style: The function 'tst_MAdjustDurationResponse_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:3065:0: style: The function 'tst_MAdjustHDAlarmVolumeResponse' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:3061:0: style: The function 'tst_MAdjustHDAlarmVolumeResponse_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:3096:0: style: The function 'tst_MAdjustHDDateTimeResponse' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:3092:0: style: The function 'tst_MAdjustHDDateTimeResponse_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:2149:0: style: The function 'tst_MAdjustInitTreatmentResponse' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:2134:0: style: The function 'tst_MAdjustInitTreatmentResponse_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:3477:0: style: The function 'tst_MAdjustPatientConnectionBeginResponse' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:3473:0: style: The function 'tst_MAdjustPatientConnectionBeginResponse_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:3446:0: style: The function 'tst_MAdjustPatientConnectionConfirmResponse' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:3442:0: style: The function 'tst_MAdjustPatientConnectionConfirmResponse_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:3633:0: style: The function 'tst_MAdjustPatientDisconnectionConfirmResponse' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:3629:0: style: The function 'tst_MAdjustPatientDisconnectionConfirmResponse_data' is never used. [unusedFunction] + +^ unittests/tst_models.cpp:487:0: style: The function 'tst_MAdjustPressuresLimitsResponse' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:456:0: style: The function 'tst_MAdjustPressuresLimitsResponse_data' is never used. [unusedFunction] +unittests/tst_models.cpp:460:0: style: The function 'tst_MAdjustPressuresLimitsResponse_data' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:426:0: style: The function 'tst_MAdjustUltrafiltrationConfirmResponse' is never used. [unusedFunction] +unittests/tst_models.cpp:3289:0: style: The function 'tst_MAdjustRecirculateResponse' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:399:0: style: The function 'tst_MAdjustUltrafiltrationConfirmResponse_data' is never used. [unusedFunction] +unittests/tst_models.cpp:3285:0: style: The function 'tst_MAdjustRecirculateResponse_data' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:366:0: style: The function 'tst_MAdjustUltrafiltrationEditResponse' is never used. [unusedFunction] +unittests/tst_models.cpp:3258:0: style: The function 'tst_MAdjustRinsebackResponse' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:327:0: style: The function 'tst_MAdjustUltrafiltrationEditResponse_data' is never used. [unusedFunction] +unittests/tst_models.cpp:3254:0: style: The function 'tst_MAdjustRinsebackResponse_data' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:254:0: style: The function 'tst_MAdjustUltrafiltrationInitResponse' is never used. [unusedFunction] +unittests/tst_models.cpp:3352:0: style: The function 'tst_MAdjustSalineResponse' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:235:0: style: The function 'tst_MAdjustUltrafiltrationInitResponse_data' is never used. [unusedFunction] +unittests/tst_models.cpp:3348:0: style: The function 'tst_MAdjustSalineResponse_data' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:300:0: style: The function 'tst_MAdjustUltrafiltrationStateResponse' is never used. [unusedFunction] +unittests/tst_models.cpp:3863:0: style: The function 'tst_MAdjustServiceDatesDGResponse' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:281:0: style: The function 'tst_MAdjustUltrafiltrationStateResponse_data' is never used. [unusedFunction] +unittests/tst_models.cpp:3859:0: style: The function 'tst_MAdjustServiceDatesDGResponse_data' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:1974:0: style: The function 'tst_MAdjustmentTreatmentParametersRequest' is never used. [unusedFunction] +unittests/tst_models.cpp:3227:0: style: The function 'tst_MAdjustServiceDatesHDResponse' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:1936:0: style: The function 'tst_MAlarmAcknowledgeRequest' is never used. [unusedFunction] +unittests/tst_models.cpp:3223:0: style: The function 'tst_MAdjustServiceDatesHDResponse_data' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:1494:0: style: The function 'tst_MAlarmCleared' is never used. [unusedFunction] +unittests/tst_models.cpp:3127:0: style: The function 'tst_MAdjustServiceModeResponse' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:1484:0: style: The function 'tst_MAlarmCleared_data' is never used. [unusedFunction] +unittests/tst_models.cpp:3123:0: style: The function 'tst_MAdjustServiceModeResponse_data' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:1418:0: style: The function 'tst_MAlarmStatus' is never used. [unusedFunction] +unittests/tst_models.cpp:3415:0: style: The function 'tst_MAdjustStartTreatmentResponse' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:1394:0: style: The function 'tst_MAlarmStatus_data' is never used. [unusedFunction] +unittests/tst_models.cpp:3411:0: style: The function 'tst_MAdjustStartTreatmentResponse_data' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:1379:0: style: The function 'tst_MAlarmStatus_text' is never used. [unusedFunction] +unittests/tst_models.cpp:3321:0: style: The function 'tst_MAdjustTreatmentEndResponse' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:1458:0: style: The function 'tst_MAlarmTriggered' is never used. [unusedFunction] +unittests/tst_models.cpp:3317:0: style: The function 'tst_MAdjustTreatmentEndResponse_data' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:1448:0: style: The function 'tst_MAlarmTriggered_data' is never used. [unusedFunction] +unittests/tst_models.cpp:2259:0: style: The function 'tst_MAdjustTreatmentLogResponse' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:1149:0: style: The function 'tst_MBloodFlowData' is never used. [unusedFunction] +unittests/tst_models.cpp:2218:0: style: The function 'tst_MAdjustTreatmentLogResponse_data' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:1115:0: style: The function 'tst_MBloodFlowData_data' is never used. [unusedFunction] +unittests/tst_models.cpp:430:0: style: The function 'tst_MAdjustUltrafiltrationConfirmResponse' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:1952:0: style: The function 'tst_MConfirmTreatmentRequest' is never used. [unusedFunction] +unittests/tst_models.cpp:403:0: style: The function 'tst_MAdjustUltrafiltrationConfirmResponse_data' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:1215:0: style: The function 'tst_MDialysateFlowData' is never used. [unusedFunction] +unittests/tst_models.cpp:370:0: style: The function 'tst_MAdjustUltrafiltrationEditResponse' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:1181:0: style: The function 'tst_MDialysateFlowData_data' is never used. [unusedFunction] +unittests/tst_models.cpp:331:0: style: The function 'tst_MAdjustUltrafiltrationEditResponse_data' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:1960:0: style: The function 'tst_MEndTreatmentRequest' is never used. [unusedFunction] +unittests/tst_models.cpp:258:0: style: The function 'tst_MAdjustUltrafiltrationInitResponse' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:1825:0: style: The function 'tst_MEndTreatmentResponse' is never used. [unusedFunction] +unittests/tst_models.cpp:239:0: style: The function 'tst_MAdjustUltrafiltrationInitResponse_data' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:1814:0: style: The function 'tst_MEndTreatmentResponse_data' is never used. [unusedFunction] +unittests/tst_models.cpp:304:0: style: The function 'tst_MAdjustUltrafiltrationStateResponse' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:1023:0: style: The function 'tst_MHDOperationModeData' is never used. [unusedFunction] +unittests/tst_models.cpp:285:0: style: The function 'tst_MAdjustUltrafiltrationStateResponse_data' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:1013:0: style: The function 'tst_MHDOperationModeData_data' is never used. [unusedFunction] +unittests/tst_models.cpp:3923:0: style: The function 'tst_MAdjustVersionsDGResponse' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:1912:0: style: The function 'tst_MHeparinResponse' is never used. [unusedFunction] +unittests/tst_models.cpp:3891:0: style: The function 'tst_MAdjustVersionsDGResponse_data' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:1898:0: style: The function 'tst_MHeparinResponse_data' is never used. [unusedFunction] +unittests/tst_models.cpp:3186:0: style: The function 'tst_MAdjustVersionsHDResponse' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:1944:0: style: The function 'tst_MInitTreatmentRequest' is never used. [unusedFunction] +unittests/tst_models.cpp:3154:0: style: The function 'tst_MAdjustVersionsHDResponse_data' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:1083:0: style: The function 'tst_MOutletFlowData' is never used. [unusedFunction] +unittests/tst_models.cpp:3384:0: style: The function 'tst_MAdjustWaterSampleResponse' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:1049:0: style: The function 'tst_MOutletFlowData_data' is never used. [unusedFunction] +unittests/tst_models.cpp:3380:0: style: The function 'tst_MAdjustWaterSampleResponse_data' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:1356:0: style: The function 'tst_MPowerOff' is never used. [unusedFunction] +unittests/tst_models.cpp:4352:0: style: The function 'tst_MAdjustmentTreatmentParametersRequest' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:1349:0: style: The function 'tst_MPowerOff_data' is never used. [unusedFunction] +unittests/tst_models.cpp:4305:0: style: The function 'tst_MAlarmAcknowledgeRequest' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:1745:0: style: The function 'tst_MPreTreatmentPrime' is never used. [unusedFunction] +unittests/tst_models.cpp:3709:0: style: The function 'tst_MAlarmActiveListResponse' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:1730:0: style: The function 'tst_MPreTreatmentPrime_data' is never used. [unusedFunction] +unittests/tst_models.cpp:3692:0: style: The function 'tst_MAlarmActiveListResponse_data' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:1319:0: style: The function 'tst_MPressureOcclusionData' is never used. [unusedFunction] +unittests/tst_models.cpp:1904:0: style: The function 'tst_MAlarmCleared' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:1293:0: style: The function 'tst_MPressureOcclusionData_data' is never used. [unusedFunction] +unittests/tst_models.cpp:3751:0: style: The function 'tst_MAlarmClearedCondition' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:1870:0: style: The function 'tst_MSalineBolusResponse' is never used. [unusedFunction] +unittests/tst_models.cpp:3747:0: style: The function 'tst_MAlarmClearedCondition_data' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:1852:0: style: The function 'tst_MSalineBolusResponse_data' is never used. [unusedFunction] +unittests/tst_models.cpp:1894:0: style: The function 'tst_MAlarmCleared_data' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:1704:0: style: The function 'tst_MTreatmentHeparinData' is never used. [unusedFunction] +unittests/tst_models.cpp:1682:0: style: The function 'tst_MAlarmStatus' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:1694:0: style: The function 'tst_MTreatmentHeparinData_data' is never used. [unusedFunction] +unittests/tst_models.cpp:1658:0: style: The function 'tst_MAlarmStatus_data' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:1600:0: style: The function 'tst_MTreatmentParametersResp' is never used. [unusedFunction] +unittests/tst_models.cpp:1643:0: style: The function 'tst_MAlarmStatus_text' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:1520:0: style: The function 'tst_MTreatmentParametersResp_data' is never used. [unusedFunction] +unittests/tst_models.cpp:1736:0: style: The function 'tst_MAlarmTriggered' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:153:0: style: The function 'tst_MTreatmentRanges' is never used. [unusedFunction] +unittests/tst_models.cpp:1712:0: style: The function 'tst_MAlarmTriggered_data' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:122:0: style: The function 'tst_MTreatmentRanges_data' is never used. [unusedFunction] +unittests/tst_models.cpp:1381:0: style: The function 'tst_MBloodFlowData' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:1665:0: style: The function 'tst_MTreatmentSalineBolusData' is never used. [unusedFunction] +unittests/tst_models.cpp:1338:0: style: The function 'tst_MBloodFlowData_data' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:1647:0: style: The function 'tst_MTreatmentSalineBolusData_data' is never used. [unusedFunction] +unittests/tst_models.cpp:4323:0: style: The function 'tst_MConfirmTreatmentRequest' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:984:0: style: The function 'tst_MTreatmentStateData' is never used. [unusedFunction] +unittests/tst_models.cpp:4061:0: style: The function 'tst_MDGAccelerometer' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:962:0: style: The function 'tst_MTreatmentStateData_data' is never used. [unusedFunction] +unittests/tst_models.cpp:4048:0: style: The function 'tst_MDGAccelerometer_data' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:1265:0: style: The function 'tst_MTreatmentTimeData' is never used. [unusedFunction] +unittests/tst_models.cpp:4010:0: style: The function 'tst_MDGConductivityData' is never used. [unusedFunction] ^ -unittests/tst_models.cpp:1247:0: style: The function 'tst_MTreatmentTimeData_data' is never used. [unusedFunction] +unittests/tst_models.cpp:3993:0: style: The function 'tst_MDGConductivityData_data' is never used. [unusedFunction] ^ -unittests/tst_messaging.cpp:600:0: style: The function 'tst_MessageBuilder_addActionId' is never used. [unusedFunction] +unittests/tst_models.cpp:4098:0: style: The function 'tst_MDGFilterFlush' is never used. [unusedFunction] ^ -unittests/tst_messaging.cpp:627:0: style: The function 'tst_MessageBuilder_addData_LongerThanMax' is never used. [unusedFunction] +unittests/tst_models.cpp:4094:0: style: The function 'tst_MDGFilterFlush_data' is never used. [unusedFunction] ^ -unittests/tst_messaging.cpp:614:0: style: The function 'tst_MessageBuilder_addData_shorterLen' is never used. [unusedFunction] +unittests/tst_models.cpp:4158:0: style: The function 'tst_MDGPostFinalResult' is never used. [unusedFunction] ^ -unittests/tst_messaging.cpp:666:0: style: The function 'tst_MessageBuilder_buildFrames_addActionId' is never used. [unusedFunction] +unittests/tst_models.cpp:4154:0: style: The function 'tst_MDGPostFinalResult_data' is never used. [unusedFunction] ^ -unittests/tst_messaging.cpp:679:0: style: The function 'tst_MessageBuilder_buildFrames_addData' is never used. [unusedFunction] +unittests/tst_models.cpp:4128:0: style: The function 'tst_MDGPostSingleResult' is never used. [unusedFunction] ^ -unittests/tst_messaging.cpp:692:0: style: The function 'tst_MessageBuilder_buildFrames_eLenCanFrame' is never used. [unusedFunction] +unittests/tst_models.cpp:4124:0: style: The function 'tst_MDGPostSingleResult_data' is never used. [unusedFunction] ^ -unittests/tst_messaging.cpp:643:0: style: The function 'tst_MessageBuilder_checkCRC' is never used. [unusedFunction] +unittests/tst_models.cpp:1459:0: style: The function 'tst_MDialysateFlowData' is never used. [unusedFunction] ^ -unittests/tst_messaging.cpp:655:0: style: The function 'tst_MessageBuilder_getHeader' is never used. [unusedFunction] +unittests/tst_models.cpp:1416:0: style: The function 'tst_MDialysateFlowData_data' is never used. [unusedFunction] ^ -unittests/tst_messaging.cpp:715:0: style: The function 'tst_MessageDispatcher_actionTransmit' is never used. [unusedFunction] +unittests/tst_models.cpp:4791:0: style: The function 'tst_MDisinfectAdjustModeRequests_ToStrings' is never used. [unusedFunction] ^ -unittests/tst_messaging.cpp:727:0: style: The function 'tst_MessageDispatcher_actionTransmit_Unknown' is never used. [unusedFunction] +unittests/tst_models.cpp:4279:0: style: The function 'tst_MDuetConfirmHDi' is never used. [unusedFunction] ^ -unittests/tst_messaging.cpp:274:0: style: The function 'tst_MessageInterpreter_HD_emptyMessages' is never used. [unusedFunction] +unittests/tst_models.cpp:4272:0: style: The function 'tst_MDuetConfirmHDi_data' is never used. [unusedFunction] ^ -unittests/tst_messaging.cpp:162:0: style: The function 'tst_MessageInterpreter_adjustBloodDialysateData_isType' is never used. [unusedFunction] +unittests/tst_models.cpp:3965:0: style: The function 'tst_MDuetRoWaterModeDGr' is never used. [unusedFunction] ^ -unittests/tst_messaging.cpp:176:0: style: The function 'tst_MessageInterpreter_adjustBloodDialysateData_payloadLen' is never used. [unusedFunction] +unittests/tst_models.cpp:3961:0: style: The function 'tst_MDuetRoWaterModeDGr_data' is never used. [unusedFunction] ^ -unittests/tst_messaging.cpp:190:0: style: The function 'tst_MessageInterpreter_adjustDurationData_isType' is never used. [unusedFunction] +unittests/tst_models.cpp:4333:0: style: The function 'tst_MEndTreatmentRequest' is never used. [unusedFunction] ^ -unittests/tst_messaging.cpp:204:0: style: The function 'tst_MessageInterpreter_adjustDurationData_payloadLen' is never used. [unusedFunction] +unittests/tst_models.cpp:2448:0: style: The function 'tst_MHDAccelerometer' is never used. [unusedFunction] ^ -unittests/tst_messaging.cpp:246:0: style: The function 'tst_MessageInterpreter_adjustUltrafiltrationConfirmData_isType' is never used. [unusedFunction] +unittests/tst_models.cpp:2434:0: style: The function 'tst_MHDAccelerometer_data' is never used. [unusedFunction] ^ -unittests/tst_messaging.cpp:260:0: style: The function 'tst_MessageInterpreter_adjustUltrafiltrationConfirmData_payloadLen' is never used. [unusedFunction] +unittests/tst_models.cpp:2542:0: style: The function 'tst_MHDAirBubbleData' is never used. [unusedFunction] ^ -unittests/tst_messaging.cpp:218:0: style: The function 'tst_MessageInterpreter_adjustUltrafiltrationEditData_isType' is never used. [unusedFunction] +unittests/tst_models.cpp:2538:0: style: The function 'tst_MHDAirBubbleData_data' is never used. [unusedFunction] ^ -unittests/tst_messaging.cpp:232:0: style: The function 'tst_MessageInterpreter_adjustUltrafiltrationEditData_payloadLen' is never used. [unusedFunction] +unittests/tst_models.cpp:2407:0: style: The function 'tst_MHDAirTrapData' is never used. [unusedFunction] ^ -unittests/tst_messaging.cpp:87:0: style: The function 'tst_MessageInterpreter_bloodFlowData' is never used. [unusedFunction] +unittests/tst_models.cpp:2403:0: style: The function 'tst_MHDAirTrapData_data' is never used. [unusedFunction] ^ -unittests/tst_messaging.cpp:386:0: style: The function 'tst_MessageInterpreter_canbusFaultCountData_isType' is never used. [unusedFunction] +unittests/tst_models.cpp:2375:0: style: The function 'tst_MHDBloodLeakData' is never used. [unusedFunction] ^ -unittests/tst_messaging.cpp:400:0: style: The function 'tst_MessageInterpreter_canbusFaultCountData_payloadLen' is never used. [unusedFunction] +unittests/tst_models.cpp:2371:0: style: The function 'tst_MHDBloodLeakData_data' is never used. [unusedFunction] ^ -unittests/tst_messaging.cpp:102:0: style: The function 'tst_MessageInterpreter_dialysateInletFlowData' is never used. [unusedFunction] +unittests/tst_models.cpp:1218:0: style: The function 'tst_MHDOperationModeData' is never used. [unusedFunction] ^ -unittests/tst_messaging.cpp:117:0: style: The function 'tst_MessageInterpreter_dialysateOutletFlowData' is never used. [unusedFunction] +unittests/tst_models.cpp:1203:0: style: The function 'tst_MHDOperationModeData_data' is never used. [unusedFunction] ^ -unittests/tst_messaging.cpp:451:0: style: The function 'tst_MessageInterpreter_interpretMessage_AdjustBloodDialysateReq' is never used. [unusedFunction] +unittests/tst_models.cpp:3036:0: style: The function 'tst_MHDPostFinalResult' is never used. [unusedFunction] ^ -unittests/tst_messaging.cpp:465:0: style: The function 'tst_MessageInterpreter_interpretMessage_AdjustDurationReq' is never used. [unusedFunction] +unittests/tst_models.cpp:3032:0: style: The function 'tst_MHDPostFinalResult_data' is never used. [unusedFunction] ^ -unittests/tst_messaging.cpp:563:0: style: The function 'tst_MessageInterpreter_interpretMessage_AdjustHeparinReq' is never used. [unusedFunction] +unittests/tst_models.cpp:3005:0: style: The function 'tst_MHDPostSingleResult' is never used. [unusedFunction] ^ -unittests/tst_messaging.cpp:572:0: style: The function 'tst_MessageInterpreter_interpretMessage_AdjustPressuresReq' is never used. [unusedFunction] +unittests/tst_models.cpp:3001:0: style: The function 'tst_MHDPostSingleResult_data' is never used. [unusedFunction] ^ -unittests/tst_messaging.cpp:549:0: style: The function 'tst_MessageInterpreter_interpretMessage_AdjustSalineReq' is never used. [unusedFunction] +unittests/tst_models.cpp:2975:0: style: The function 'tst_MHDRTCEpochData' is never used. [unusedFunction] ^ -unittests/tst_messaging.cpp:535:0: style: The function 'tst_MessageInterpreter_interpretMessage_AdjustUltrafiltrationConfirmReq' is never used. [unusedFunction] +unittests/tst_models.cpp:2970:0: style: The function 'tst_MHDRTCEpochData_data' is never used. [unusedFunction] ^ -unittests/tst_messaging.cpp:521:0: style: The function 'tst_MessageInterpreter_interpretMessage_AdjustUltrafiltrationEditReq' is never used. [unusedFunction] +unittests/tst_models.cpp:2335:0: style: The function 'tst_MHDSyringePump' is never used. [unusedFunction] ^ -unittests/tst_messaging.cpp:493:0: style: The function 'tst_MessageInterpreter_interpretMessage_AdjustUltrafiltrationInitReq' is never used. [unusedFunction] +unittests/tst_models.cpp:2319:0: style: The function 'tst_MHDSyringePump_data' is never used. [unusedFunction] ^ -unittests/tst_messaging.cpp:507:0: style: The function 'tst_MessageInterpreter_interpretMessage_AdjustUltrafiltrationStateReq' is never used. [unusedFunction] +unittests/tst_models.cpp:2507:0: style: The function 'tst_MHDUsageInfoResponse' is never used. [unusedFunction] ^ -unittests/tst_messaging.cpp:479:0: style: The function 'tst_MessageInterpreter_interpretMessage_AlarmSilenceReq' is never used. [unusedFunction] +unittests/tst_models.cpp:2482:0: style: The function 'tst_MHDUsageInfoResponse_data' is never used. [unusedFunction] ^ -unittests/tst_messaging.cpp:586:0: style: The function 'tst_MessageInterpreter_interpretMessage_CANBusFaultCount' is never used. [unusedFunction] +unittests/tst_models.cpp:2191:0: style: The function 'tst_MHeparinResponse' is never used. [unusedFunction] ^ -unittests/tst_messaging.cpp:423:0: style: The function 'tst_MessageInterpreter_interpretMessage_DG_Unhandled' is never used. [unusedFunction] +unittests/tst_models.cpp:2177:0: style: The function 'tst_MHeparinResponse_data' is never used. [unusedFunction] ^ -unittests/tst_messaging.cpp:415:0: style: The function 'tst_MessageInterpreter_interpretMessage_String' is never used. [unusedFunction] +unittests/tst_models.cpp:4314:0: style: The function 'tst_MInitTreatmentRequest' is never used. [unusedFunction] ^ -unittests/tst_messaging.cpp:47:0: style: The function 'tst_MessageInterpreter_isPayloadLenValid' is never used. [unusedFunction] +unittests/tst_models.cpp:1301:0: style: The function 'tst_MOutletFlowData' is never used. [unusedFunction] ^ -unittests/tst_messaging.cpp:60:0: style: The function 'tst_MessageInterpreter_isPayloadLenValid_undefined' is never used. [unusedFunction] +unittests/tst_models.cpp:1246:0: style: The function 'tst_MOutletFlowData_data' is never used. [unusedFunction] ^ -unittests/tst_messaging.cpp:33:0: style: The function 'tst_MessageInterpreter_isType' is never used. [unusedFunction] +unittests/tst_models.cpp:4800:0: style: The function 'tst_MPostTreatmentAdjustRequests_ToStrings' is never used. [unusedFunction] ^ -unittests/tst_messaging.cpp:330:0: style: The function 'tst_MessageInterpreter_loadCellReadingsData_isType' is never used. [unusedFunction] +unittests/tst_models.cpp:2689:0: style: The function 'tst_MPostTreatmentStates' is never used. [unusedFunction] ^ -unittests/tst_messaging.cpp:344:0: style: The function 'tst_MessageInterpreter_loadCellReadingsData_payloadLen' is never used. [unusedFunction] +unittests/tst_models.cpp:2685:0: style: The function 'tst_MPostTreatmentStates_data' is never used. [unusedFunction] ^ -unittests/tst_messaging.cpp:435:0: style: The function 'tst_MessageInterpreter_notify_fromByteArray' is never used. [unusedFunction] +unittests/tst_models.cpp:1620:0: style: The function 'tst_MPowerOff' is never used. [unusedFunction] ^ -unittests/tst_messaging.cpp:73:0: style: The function 'tst_MessageInterpreter_powerOffData' is never used. [unusedFunction] +unittests/tst_models.cpp:1613:0: style: The function 'tst_MPowerOff_data' is never used. [unusedFunction] ^ -unittests/tst_messaging.cpp:147:0: style: The function 'tst_MessageInterpreter_pressureOcclusionData' is never used. [unusedFunction] +unittests/tst_models.cpp:2107:0: style: The function 'tst_MPreTreatmentPrime' is never used. [unusedFunction] ^ -unittests/tst_messaging.cpp:358:0: style: The function 'tst_MessageInterpreter_temperatureSensorsData_isType' is never used. [unusedFunction] +unittests/tst_models.cpp:2092:0: style: The function 'tst_MPreTreatmentPrime_data' is never used. [unusedFunction] ^ -unittests/tst_messaging.cpp:372:0: style: The function 'tst_MessageInterpreter_temperatureSensorsData_payloadLen' is never used. [unusedFunction] +unittests/tst_models.cpp:2658:0: style: The function 'tst_MPreTreatmentSelfTestDry' is never used. [unusedFunction] ^ -unittests/tst_messaging.cpp:302:0: style: The function 'tst_MessageInterpreter_treatmentRangesData_isType' is never used. [unusedFunction] +unittests/tst_models.cpp:2654:0: style: The function 'tst_MPreTreatmentSelfTestDry_data' is never used. [unusedFunction] ^ -unittests/tst_messaging.cpp:316:0: style: The function 'tst_MessageInterpreter_treatmentRangesData_payloadLen' is never used. [unusedFunction] +unittests/tst_models.cpp:2627:0: style: The function 'tst_MPreTreatmentSelfTestNoCartridge' is never used. [unusedFunction] ^ -unittests/tst_messaging.cpp:132:0: style: The function 'tst_MessageInterpreter_treatmentTime' is never used. [unusedFunction] +unittests/tst_models.cpp:2623:0: style: The function 'tst_MPreTreatmentSelfTestNoCartridge_data' is never used. [unusedFunction] ^ +unittests/tst_models.cpp:2586:0: style: The function 'tst_MPreTreatmentStates' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:2569:0: style: The function 'tst_MPreTreatmentStates_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:1579:0: style: The function 'tst_MPressureOcclusionData' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:1540:0: style: The function 'tst_MPressureOcclusionData_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:2826:0: style: The function 'tst_MTreatmentBloodPrime' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:2822:0: style: The function 'tst_MTreatmentBloodPrime_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:2065:0: style: The function 'tst_MTreatmentHeparinData' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:2050:0: style: The function 'tst_MTreatmentHeparinData_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:2940:0: style: The function 'tst_MTreatmentLogAlarmData' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:2932:0: style: The function 'tst_MTreatmentLogAlarmData_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:2901:0: style: The function 'tst_MTreatmentLogAvrgeData' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:2891:0: style: The function 'tst_MTreatmentLogAvrgeData_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:2862:0: style: The function 'tst_MTreatmentLogEventData' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:2854:0: style: The function 'tst_MTreatmentLogEventData_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:1955:0: style: The function 'tst_MTreatmentParametersResp' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:1930:0: style: The function 'tst_MTreatmentParametersResp_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:157:0: style: The function 'tst_MTreatmentRanges' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:126:0: style: The function 'tst_MTreatmentRanges_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:2794:0: style: The function 'tst_MTreatmentRecirculate' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:2790:0: style: The function 'tst_MTreatmentRecirculate_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:2758:0: style: The function 'tst_MTreatmentRinseback' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:2747:0: style: The function 'tst_MTreatmentRinseback_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:2021:0: style: The function 'tst_MTreatmentSalineBolusData' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:2003:0: style: The function 'tst_MTreatmentSalineBolusData_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:1167:0: style: The function 'tst_MTreatmentStateData' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:1120:0: style: The function 'tst_MTreatmentStateData_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:2720:0: style: The function 'tst_MTreatmentStop' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:2716:0: style: The function 'tst_MTreatmentStop_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:1512:0: style: The function 'tst_MTreatmentTimeData' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:1494:0: style: The function 'tst_MTreatmentTimeData_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:4232:0: style: The function 'tst_MUIBloodPressure' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:4183:0: style: The function 'tst_MUIBloodPressure_data' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:628:0: style: The function 'tst_MessageBuilder_addActionId' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:655:0: style: The function 'tst_MessageBuilder_addData_LongerThanMax' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:642:0: style: The function 'tst_MessageBuilder_addData_shorterLen' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:694:0: style: The function 'tst_MessageBuilder_buildFrames_addActionId' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:707:0: style: The function 'tst_MessageBuilder_buildFrames_addData' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:720:0: style: The function 'tst_MessageBuilder_buildFrames_eLenCanFrame' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:671:0: style: The function 'tst_MessageBuilder_checkCRC' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:683:0: style: The function 'tst_MessageBuilder_getHeader' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:743:0: style: The function 'tst_MessageDispatcher_actionTransmit' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:755:0: style: The function 'tst_MessageDispatcher_actionTransmit_Unknown' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:280:0: style: The function 'tst_MessageInterpreter_HD_emptyMessages' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:168:0: style: The function 'tst_MessageInterpreter_adjustBloodDialysateData_isType' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:182:0: style: The function 'tst_MessageInterpreter_adjustBloodDialysateData_payloadLen' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:196:0: style: The function 'tst_MessageInterpreter_adjustDurationData_isType' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:210:0: style: The function 'tst_MessageInterpreter_adjustDurationData_payloadLen' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:252:0: style: The function 'tst_MessageInterpreter_adjustUltrafiltrationConfirmData_isType' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:266:0: style: The function 'tst_MessageInterpreter_adjustUltrafiltrationConfirmData_payloadLen' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:224:0: style: The function 'tst_MessageInterpreter_adjustUltrafiltrationEditData_isType' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:238:0: style: The function 'tst_MessageInterpreter_adjustUltrafiltrationEditData_payloadLen' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:93:0: style: The function 'tst_MessageInterpreter_bloodFlowData' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:392:0: style: The function 'tst_MessageInterpreter_canbusFaultCountData_isType' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:406:0: style: The function 'tst_MessageInterpreter_canbusFaultCountData_payloadLen' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:108:0: style: The function 'tst_MessageInterpreter_dialysateInletFlowData' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:123:0: style: The function 'tst_MessageInterpreter_dialysateOutletFlowData' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:459:0: style: The function 'tst_MessageInterpreter_interpretMessage_AdjustBloodDialysateReq' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:475:0: style: The function 'tst_MessageInterpreter_interpretMessage_AdjustDurationReq' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:587:0: style: The function 'tst_MessageInterpreter_interpretMessage_AdjustHeparinReq' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:598:0: style: The function 'tst_MessageInterpreter_interpretMessage_AdjustPressuresReq' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:571:0: style: The function 'tst_MessageInterpreter_interpretMessage_AdjustSalineReq' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:555:0: style: The function 'tst_MessageInterpreter_interpretMessage_AdjustUltrafiltrationConfirmReq' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:539:0: style: The function 'tst_MessageInterpreter_interpretMessage_AdjustUltrafiltrationEditReq' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:507:0: style: The function 'tst_MessageInterpreter_interpretMessage_AdjustUltrafiltrationInitReq' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:523:0: style: The function 'tst_MessageInterpreter_interpretMessage_AdjustUltrafiltrationStateReq' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:491:0: style: The function 'tst_MessageInterpreter_interpretMessage_AlarmSilenceReq' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:614:0: style: The function 'tst_MessageInterpreter_interpretMessage_CANBusFaultCount' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:431:0: style: The function 'tst_MessageInterpreter_interpretMessage_DG_Unhandled' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:421:0: style: The function 'tst_MessageInterpreter_interpretMessage_String' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:49:0: style: The function 'tst_MessageInterpreter_isPayloadLenValid' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:62:0: style: The function 'tst_MessageInterpreter_isPayloadLenValid_undefined' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:35:0: style: The function 'tst_MessageInterpreter_isType' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:336:0: style: The function 'tst_MessageInterpreter_loadCellReadingsData_isType' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:350:0: style: The function 'tst_MessageInterpreter_loadCellReadingsData_payloadLen' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:443:0: style: The function 'tst_MessageInterpreter_notify_fromByteArray' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:75:0: style: The function 'tst_MessageInterpreter_powerOffData' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:153:0: style: The function 'tst_MessageInterpreter_pressureOcclusionData' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:364:0: style: The function 'tst_MessageInterpreter_temperatureSensorsData_isType' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:378:0: style: The function 'tst_MessageInterpreter_temperatureSensorsData_payloadLen' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:308:0: style: The function 'tst_MessageInterpreter_treatmentRangesData_isType' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:322:0: style: The function 'tst_MessageInterpreter_treatmentRangesData_payloadLen' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:138:0: style: The function 'tst_MessageInterpreter_treatmentTime' is never used. [unusedFunction] + +^ unittests/tst_threads.cpp:36:0: style: The function 'tst_Thread_init' is never used. [unusedFunction] ^ unittests/tst_threads.cpp:48:0: style: The function 'tst_Thread_names' is never used. [unusedFunction] ^ +unittests/tst_views.cpp:44:0: style: The function 'tst_VTreatmentAdjustmentUltrafiltrationState_text' is never used. [unusedFunction] + +^ +unittests/tst_views.cpp:73:0: style: The function 'tst_createTreatment_validation' is never used. [unusedFunction] + +^ +unittests/tst_logging.cpp:176:0: style: The function 'tst_enableConsoleOut' is never used. [unusedFunction] + +^ +unittests/tst_fileHandler.cpp:81:0: style: The function 'tst_find' is never used. [unusedFunction] + +^ unittests/tst_utilities.cpp:35:0: style: The function 'tst_floatCompare_isMatch' is never used. [unusedFunction] ^ @@ -1389,6 +2268,21 @@ unittests/tst_utilities.cpp:40:0: style: The function 'tst_getbits_NoError' is never used. [unusedFunction] ^ +unittests/tst_fileHandler.cpp:52:0: style: The function 'tst_isMounted' is never used. [unusedFunction] + +^ +unittests/tst_logging.cpp:157:0: style: The function 'tst_log_function_extraCases' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:4785:0: style: The function 'tst_modelsHeader_Coverage' is never used. [unusedFunction] + +^ +unittests/tst_fileHandler.cpp:28:0: style: The function 'tst_read_append_return' is never used. [unusedFunction] + +^ +unittests/tst_fileHandler.cpp:40:0: style: The function 'tst_removeFiles' is never used. [unusedFunction] + +^ unittests/tst_utilities.cpp:312:0: style: The function 'tst_safeIncrement_GtMaxValue_Step1' is never used. [unusedFunction] ^ @@ -1398,6 +2292,9 @@ unittests/tst_utilities.cpp:298:0: style: The function 'tst_safeIncrement_StepZero' is never used. [unusedFunction] ^ +unittests/tst_fileHandler.cpp:72:0: style: The function 'tst_tmpUsable' is never used. [unusedFunction] + +^ unittests/tst_utilities.cpp:188:0: style: The function 'tst_toStringList_Default' is never used. [unusedFunction] ^ @@ -1410,11 +2307,20 @@ sources/view/settings/VSettings.cpp:318:0: style: The function 'updateServicePassword' is never used. [unusedFunction] ^ -sources/device/DeviceController.cpp:253:0: style: The function 'usbCheck' is never used. [unusedFunction] +sources/update/SignRsa.cpp:395:0: style: The function 'update_digest' is never used. [unusedFunction] ^ +sources/device/DeviceController.cpp:260:0: style: The function 'usbCheck' is never used. [unusedFunction] + +^ sources/wifi/WifiInterface.cpp:936:0: style: The function 'variantListToSecurityTypes' is never used. [unusedFunction] ^ +sources/update/SignRsa.cpp:498:0: style: The function 'verify_data' is never used. [unusedFunction] + +^ +sources/update/VSwUpdate.cpp:339:0: style: The function 'visibilityChanged' 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: cppcheck.log =================================================================== diff -u -rb6f86ce89361e33d989f6a9d01eb94c344a6384f -rf2763cc4a2f823371fe7d9474d01b93b7de935c1 --- cppcheck.log (.../cppcheck.log) (revision b6f86ce89361e33d989f6a9d01eb94c344a6384f) +++ cppcheck.log (.../cppcheck.log) (revision f2763cc4a2f823371fe7d9474d01b93b7de935c1) @@ -1,1591 +1,1654 @@ -02/28/2024 17:22 +06/07/2024 13:53 Dara Navaei Checking main.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking main.cpp: Q_PROPERTY=1;Q_ENUM=1... -1/227 files checked 1% done +1/236 files checked 1% done Checking sources/AlarmGenerator.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/AlarmGenerator.cpp: Q_PROPERTY=1;Q_ENUM=1... -2/227 files checked 1% done +2/236 files checked 1% done Checking sources/ApplicationController.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/ApplicationController.cpp: Q_PROPERTY=1;Q_ENUM=1... -3/227 files checked 3% done +3/236 files checked 3% done Checking sources/ApplicationPost.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/ApplicationPost.cpp: Q_PROPERTY=1;Q_ENUM=1... -4/227 files checked 4% done +4/236 files checked 3% done Checking sources/MainTimer.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/MainTimer.cpp: Q_PROPERTY=1;Q_ENUM=1... -5/227 files checked 4% done +5/236 files checked 4% done Checking sources/Threads.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/Threads.cpp: Q_PROPERTY=1;Q_ENUM=1... -6/227 files checked 5% done +6/236 files checked 4% done Checking sources/bluetooth/BluetoothInterface.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/bluetooth/BluetoothInterface.cpp: Q_PROPERTY=1;Q_ENUM=1... -7/227 files checked 9% done +7/236 files checked 7% done Checking sources/canbus/CanInterface.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/canbus/CanInterface.cpp: Q_PROPERTY=1;Q_ENUM=1... -8/227 files checked 10% done +8/236 files checked 8% done Checking sources/canbus/FrameInterface.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/canbus/FrameInterface.cpp: Q_PROPERTY=1;Q_ENUM=1... -9/227 files checked 11% done +9/236 files checked 9% done Checking sources/canbus/MessageAcknowModel.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/canbus/MessageAcknowModel.cpp: Q_PROPERTY=1;Q_ENUM=1... -10/227 files checked 11% done +10/236 files checked 9% done Checking sources/canbus/MessageBuilder.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/canbus/MessageBuilder.cpp: Q_PROPERTY=1;Q_ENUM=1... -11/227 files checked 12% done +11/236 files checked 10% done Checking sources/canbus/MessageDispatcher.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/canbus/MessageDispatcher.cpp: Q_PROPERTY=1;Q_ENUM=1... -12/227 files checked 15% done +12/236 files checked 12% done Checking sources/canbus/MessageInterpreter.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/canbus/MessageInterpreter.cpp: Q_PROPERTY=1;Q_ENUM=1... -13/227 files checked 19% done +13/236 files checked 16% done Checking sources/cloudsync/CloudSyncController.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/cloudsync/CloudSyncController.cpp: Q_PROPERTY=1;Q_ENUM=1... -14/227 files checked 22% done +14/236 files checked 19% done Checking sources/device/DeviceController.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/device/DeviceController.cpp: Q_PROPERTY=1;Q_ENUM=1... -15/227 files checked 25% done +15/236 files checked 21% done Checking sources/device/DeviceError.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/device/DeviceError.cpp: Q_PROPERTY=1;Q_ENUM=1... -16/227 files checked 25% done +16/236 files checked 22% done Checking sources/device/DeviceModels.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/device/DeviceModels.cpp: Q_PROPERTY=1;Q_ENUM=1... -17/227 files checked 26% done +17/236 files checked 22% done Checking sources/device/DeviceView.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/device/DeviceView.cpp: Q_PROPERTY=1;Q_ENUM=1... -18/227 files checked 27% done +18/236 files checked 23% done Checking sources/gui/GuiController.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/gui/GuiController.cpp: Q_PROPERTY=1;Q_ENUM=1... -19/227 files checked 28% done +19/236 files checked 24% done Checking sources/gui/GuiGlobals.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/gui/GuiGlobals.cpp: Q_PROPERTY=1;Q_ENUM=1... -20/227 files checked 28% done +20/236 files checked 24% done Checking sources/gui/GuiView.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/gui/GuiView.cpp: Q_PROPERTY=1;Q_ENUM=1... -21/227 files checked 29% done +21/236 files checked 25% done Checking sources/model/MAbstract.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/MAbstract.cpp: Q_PROPERTY=1;Q_ENUM=1... -22/227 files checked 29% done +22/236 files checked 25% done Checking sources/model/MAbstractDynamic.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/MAbstractDynamic.cpp: Q_PROPERTY=1;Q_ENUM=1... -23/227 files checked 30% done +23/236 files checked 25% done Checking sources/model/confirm/MDuetConfirmHDi.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/confirm/MDuetConfirmHDi.cpp: Q_PROPERTY=1;Q_ENUM=1... -24/227 files checked 30% done +24/236 files checked 25% done Checking sources/model/dg/adjustment/settings/MAdjustDGCleaningUsageResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/dg/adjustment/settings/MAdjustDGCleaningUsageResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -25/227 files checked 30% done +25/236 files checked 25% done Checking sources/model/dg/adjustment/settings/MAdjustDGDateTimeResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/dg/adjustment/settings/MAdjustDGDateTimeResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -26/227 files checked 30% done +26/236 files checked 26% done Checking sources/model/dg/adjustment/settings/MAdjustDGSerialNumberResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/dg/adjustment/settings/MAdjustDGSerialNumberResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -27/227 files checked 30% done +27/236 files checked 26% done Checking sources/model/dg/adjustment/settings/MAdjustDGServiceDatesResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/dg/adjustment/settings/MAdjustDGServiceDatesResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -28/227 files checked 30% done +28/236 files checked 26% done Checking sources/model/dg/adjustment/settings/MAdjustDGVersionsResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/dg/adjustment/settings/MAdjustDGVersionsResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -29/227 files checked 30% done +29/236 files checked 26% done Checking sources/model/dg/adjustment/settings/MDuetRoWaterDG.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/dg/adjustment/settings/MDuetRoWaterDG.cpp: Q_PROPERTY=1;Q_ENUM=1... -30/227 files checked 31% done +30/236 files checked 26% done Checking sources/model/dg/data/MDGAccelerometerData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/dg/data/MDGAccelerometerData.cpp: Q_PROPERTY=1;Q_ENUM=1... -31/227 files checked 31% done +31/236 files checked 26% done Checking sources/model/dg/data/MDGConductivityData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/dg/data/MDGConductivityData.cpp: Q_PROPERTY=1;Q_ENUM=1... -32/227 files checked 31% done +32/236 files checked 26% done Checking sources/model/dg/data/MDGDebugText.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/dg/data/MDGDebugText.cpp: Q_PROPERTY=1;Q_ENUM=1... -33/227 files checked 31% done +33/236 files checked 26% done Checking sources/model/dg/data/MDGDrainPumpData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/dg/data/MDGDrainPumpData.cpp: Q_PROPERTY=1;Q_ENUM=1... -34/227 files checked 31% done +34/236 files checked 27% done Checking sources/model/dg/data/MDGGeneralEvent.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/dg/data/MDGGeneralEvent.cpp: Q_PROPERTY=1;Q_ENUM=1... -35/227 files checked 31% done +35/236 files checked 27% done Checking sources/model/dg/data/MDGHeatersData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/dg/data/MDGHeatersData.cpp: Q_PROPERTY=1;Q_ENUM=1... -36/227 files checked 32% done +36/236 files checked 27% done Checking sources/model/dg/data/MDGLoadCellReadingsData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/dg/data/MDGLoadCellReadingsData.cpp: Q_PROPERTY=1;Q_ENUM=1... -37/227 files checked 32% done +37/236 files checked 27% done Checking sources/model/dg/data/MDGOperationModeData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/dg/data/MDGOperationModeData.cpp: Q_PROPERTY=1;Q_ENUM=1... -38/227 files checked 32% done +38/236 files checked 27% done Checking sources/model/dg/data/MDGPressuresData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/dg/data/MDGPressuresData.cpp: Q_PROPERTY=1;Q_ENUM=1... -39/227 files checked 32% done +39/236 files checked 27% done Checking sources/model/dg/data/MDGROPumpData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/dg/data/MDGROPumpData.cpp: Q_PROPERTY=1;Q_ENUM=1... -40/227 files checked 32% done +40/236 files checked 27% done Checking sources/model/dg/data/MDGReservoirData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/dg/data/MDGReservoirData.cpp: Q_PROPERTY=1;Q_ENUM=1... -41/227 files checked 32% done +41/236 files checked 28% done Checking sources/model/dg/data/MDGTemperaturesData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/dg/data/MDGTemperaturesData.cpp: Q_PROPERTY=1;Q_ENUM=1... -42/227 files checked 33% done +42/236 files checked 28% done Checking sources/model/dg/data/MDGValvesStatesData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/dg/data/MDGValvesStatesData.cpp: Q_PROPERTY=1;Q_ENUM=1... -43/227 files checked 33% done +43/236 files checked 28% done Checking sources/model/dg/data/post/MDGPostFinalResultData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/dg/data/post/MDGPostFinalResultData.cpp: Q_PROPERTY=1;Q_ENUM=1... -44/227 files checked 33% done +44/236 files checked 28% done Checking sources/model/dg/data/post/MDGPostSingleResultData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/dg/data/post/MDGPostSingleResultData.cpp: Q_PROPERTY=1;Q_ENUM=1... -45/227 files checked 33% done +45/236 files checked 28% done Checking sources/model/dg/data/pretreatment/MDGFilterFlushData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/dg/data/pretreatment/MDGFilterFlushData.cpp: Q_PROPERTY=1;Q_ENUM=1... -46/227 files checked 33% done +46/236 files checked 28% done Checking sources/model/hd/adjustment/MAdjustPowerOff.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/adjustment/MAdjustPowerOff.cpp: Q_PROPERTY=1;Q_ENUM=1... -47/227 files checked 33% done +47/236 files checked 28% done Checking sources/model/hd/adjustment/disinfect/MDisinfectAdjustModeResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/adjustment/disinfect/MDisinfectAdjustModeResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -48/227 files checked 33% done +48/236 files checked 28% done Checking sources/model/hd/adjustment/disinfect/MDisinfectAdjustStartResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/adjustment/disinfect/MDisinfectAdjustStartResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -49/227 files checked 34% done +49/236 files checked 29% done Checking sources/model/hd/adjustment/posttreatment/MPostTreatmentAdjustDisposablesRemovalConfirmResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/adjustment/posttreatment/MPostTreatmentAdjustDisposablesRemovalConfirmResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -50/227 files checked 34% done +50/236 files checked 29% done Checking sources/model/hd/adjustment/posttreatment/MPostTreatmentAdjustPatientDisconnectionConfirmResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/adjustment/posttreatment/MPostTreatmentAdjustPatientDisconnectionConfirmResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -51/227 files checked 34% done +51/236 files checked 29% done Checking sources/model/hd/adjustment/posttreatment/MPostTreatmentAdjustTreatmentLogResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/adjustment/posttreatment/MPostTreatmentAdjustTreatmentLogResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -52/227 files checked 35% done +52/236 files checked 29% done Checking sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustDisposablesConfirmResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustDisposablesConfirmResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -53/227 files checked 35% done +53/236 files checked 30% done Checking sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustDisposablesPrimeResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustDisposablesPrimeResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -54/227 files checked 35% done +54/236 files checked 30% done Checking sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustInitTreatmentResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustInitTreatmentResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -55/227 files checked 35% done +55/236 files checked 30% done Checking sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustParametersValidationResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustParametersValidationResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -56/227 files checked 35% done +56/236 files checked 30% done Checking sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustPatientConnectionBeginResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustPatientConnectionBeginResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -57/227 files checked 35% done +57/236 files checked 30% done Checking sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustPatientConnectionConfirmResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustPatientConnectionConfirmResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -58/227 files checked 36% done +58/236 files checked 30% done Checking sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustStartTreatmentResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustStartTreatmentResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -59/227 files checked 36% done +59/236 files checked 30% done Checking sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustUltrafiltrationInitResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustUltrafiltrationInitResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -60/227 files checked 36% done +60/236 files checked 30% done Checking sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustWaterSampleResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustWaterSampleResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -61/227 files checked 36% done +61/236 files checked 30% done Checking sources/model/hd/adjustment/settings/MAdjustHDAlarmVolumeResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/adjustment/settings/MAdjustHDAlarmVolumeResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -62/227 files checked 36% done +62/236 files checked 30% done Checking sources/model/hd/adjustment/settings/MAdjustHDDateTimeResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/adjustment/settings/MAdjustHDDateTimeResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -63/227 files checked 36% done +63/236 files checked 31% done Checking sources/model/hd/adjustment/settings/MAdjustHDInstitutionalRecordResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/adjustment/settings/MAdjustHDInstitutionalRecordResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -64/227 files checked 37% done +64/236 files checked 31% done Checking sources/model/hd/adjustment/settings/MAdjustHDSerialNumberResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/adjustment/settings/MAdjustHDSerialNumberResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -65/227 files checked 37% done +65/236 files checked 31% done Checking sources/model/hd/adjustment/settings/MAdjustHDServiceDatesResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/adjustment/settings/MAdjustHDServiceDatesResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -66/227 files checked 37% done +66/236 files checked 31% done Checking sources/model/hd/adjustment/settings/MAdjustHDServiceModeResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/adjustment/settings/MAdjustHDServiceModeResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -67/227 files checked 37% done +67/236 files checked 31% done Checking sources/model/hd/adjustment/settings/MAdjustHDVersionsRequest.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/adjustment/settings/MAdjustHDVersionsRequest.cpp: Q_PROPERTY=1;Q_ENUM=1... -68/227 files checked 37% done +68/236 files checked 31% done Checking sources/model/hd/adjustment/settings/MAdjustHDVersionsResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/adjustment/settings/MAdjustHDVersionsResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -69/227 files checked 37% done +69/236 files checked 31% done Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustBloodDialysateResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustBloodDialysateResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -70/227 files checked 37% done +70/236 files checked 32% done Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustDurationResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustDurationResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -71/227 files checked 37% done +71/236 files checked 32% done Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustEndResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustEndResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -72/227 files checked 38% done +72/236 files checked 32% done Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustHeparinResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustHeparinResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -73/227 files checked 38% done +73/236 files checked 32% done Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustPressuresLimitsResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustPressuresLimitsResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -74/227 files checked 38% done +74/236 files checked 32% done Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustRecirculateResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustRecirculateResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -75/227 files checked 38% done +75/236 files checked 32% done Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustRinsebackResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustRinsebackResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -76/227 files checked 38% done +76/236 files checked 32% done Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustSalineResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustSalineResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -77/227 files checked 38% done +77/236 files checked 32% done Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustUltrafiltrationConfirmResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustUltrafiltrationConfirmResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -78/227 files checked 38% done +78/236 files checked 32% done Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustUltrafiltrationEditResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustUltrafiltrationEditResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -79/227 files checked 38% done +79/236 files checked 33% done Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustUltrafiltrationStateResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustUltrafiltrationStateResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -80/227 files checked 39% done +80/236 files checked 33% done Checking sources/model/hd/alarm/MAlarmActiveList.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/alarm/MAlarmActiveList.cpp: Q_PROPERTY=1;Q_ENUM=1... -81/227 files checked 39% done +81/236 files checked 33% done Checking sources/model/hd/alarm/MAlarmCleared.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/alarm/MAlarmCleared.cpp: Q_PROPERTY=1;Q_ENUM=1... -82/227 files checked 39% done +82/236 files checked 33% done Checking sources/model/hd/alarm/MAlarmClearedCondition.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/alarm/MAlarmClearedCondition.cpp: Q_PROPERTY=1;Q_ENUM=1... -83/227 files checked 39% done +83/236 files checked 33% done Checking sources/model/hd/alarm/MAlarmMapping.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/alarm/MAlarmMapping.cpp: Q_PROPERTY=1;Q_ENUM=1... -84/227 files checked 45% done +84/236 files checked 38% done Checking sources/model/hd/alarm/MAlarmStatusData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/alarm/MAlarmStatusData.cpp: Q_PROPERTY=1;Q_ENUM=1... -85/227 files checked 45% done +85/236 files checked 38% done Checking sources/model/hd/alarm/MAlarmTriggered.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/alarm/MAlarmTriggered.cpp: Q_PROPERTY=1;Q_ENUM=1... -86/227 files checked 46% done +86/236 files checked 38% done Checking sources/model/hd/data/MHDAccelerometerData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/data/MHDAccelerometerData.cpp: Q_PROPERTY=1;Q_ENUM=1... -87/227 files checked 46% done +87/236 files checked 39% done Checking sources/model/hd/data/MHDAirBubbleData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/data/MHDAirBubbleData.cpp: Q_PROPERTY=1;Q_ENUM=1... -88/227 files checked 46% done +88/236 files checked 39% done Checking sources/model/hd/data/MHDAirTrapData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/data/MHDAirTrapData.cpp: Q_PROPERTY=1;Q_ENUM=1... -89/227 files checked 46% done +89/236 files checked 39% done Checking sources/model/hd/data/MHDBloodLeakData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/data/MHDBloodLeakData.cpp: Q_PROPERTY=1;Q_ENUM=1... -90/227 files checked 46% done +90/236 files checked 39% done Checking sources/model/hd/data/MHDDebugText.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/data/MHDDebugText.cpp: Q_PROPERTY=1;Q_ENUM=1... -91/227 files checked 46% done +91/236 files checked 39% done Checking sources/model/hd/data/MHDGeneralEvent.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/data/MHDGeneralEvent.cpp: Q_PROPERTY=1;Q_ENUM=1... -92/227 files checked 46% done +92/236 files checked 39% done Checking sources/model/hd/data/MHDOperationModeData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/data/MHDOperationModeData.cpp: Q_PROPERTY=1;Q_ENUM=1... -93/227 files checked 46% done +93/236 files checked 39% done Checking sources/model/hd/data/MHDSyringePumpData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/data/MHDSyringePumpData.cpp: Q_PROPERTY=1;Q_ENUM=1... -94/227 files checked 47% done +94/236 files checked 39% done Checking sources/model/hd/data/MHDUsageInfoResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/data/MHDUsageInfoResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... -95/227 files checked 47% done +95/236 files checked 39% done Checking sources/model/hd/data/MTreatmentRangesData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/data/MTreatmentRangesData.cpp: Q_PROPERTY=1;Q_ENUM=1... -96/227 files checked 47% done +96/236 files checked 39% done Checking sources/model/hd/data/post/MHDPostFinalResultData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/data/post/MHDPostFinalResultData.cpp: Q_PROPERTY=1;Q_ENUM=1... -97/227 files checked 47% done +97/236 files checked 40% done Checking sources/model/hd/data/post/MHDPostSingleResultData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/data/post/MHDPostSingleResultData.cpp: Q_PROPERTY=1;Q_ENUM=1... -98/227 files checked 47% done +98/236 files checked 40% done Checking sources/model/hd/data/post/MHDRTCEpochData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/data/post/MHDRTCEpochData.cpp: Q_PROPERTY=1;Q_ENUM=1... -99/227 files checked 47% done +99/236 files checked 40% done Checking sources/model/hd/data/post/MUIPostFinalResultHDRequest.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/data/post/MUIPostFinalResultHDRequest.cpp: Q_PROPERTY=1;Q_ENUM=1... -100/227 files checked 47% done +100/236 files checked 40% done Checking sources/model/hd/data/posttreatment/MPostTreatmentStatesData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/data/posttreatment/MPostTreatmentStatesData.cpp: Q_PROPERTY=1;Q_ENUM=1... -101/227 files checked 47% done +101/236 files checked 40% done Checking sources/model/hd/data/pretreatment/MPreTreatmentDisposablesPrimeData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/data/pretreatment/MPreTreatmentDisposablesPrimeData.cpp: Q_PROPERTY=1;Q_ENUM=1... -102/227 files checked 47% done +102/236 files checked 40% done Checking sources/model/hd/data/pretreatment/MPreTreatmentSelfTestDryData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/data/pretreatment/MPreTreatmentSelfTestDryData.cpp: Q_PROPERTY=1;Q_ENUM=1... -103/227 files checked 47% done +103/236 files checked 40% done Checking sources/model/hd/data/pretreatment/MPreTreatmentSelfTestNoCartridgeData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/data/pretreatment/MPreTreatmentSelfTestNoCartridgeData.cpp: Q_PROPERTY=1;Q_ENUM=1... -104/227 files checked 48% done +104/236 files checked 40% done Checking sources/model/hd/data/pretreatment/MPreTreatmentStatesData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/data/pretreatment/MPreTreatmentStatesData.cpp: Q_PROPERTY=1;Q_ENUM=1... -105/227 files checked 48% done +105/236 files checked 40% done Checking sources/model/hd/data/treatment/MTreatmentBloodFlowData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/data/treatment/MTreatmentBloodFlowData.cpp: Q_PROPERTY=1;Q_ENUM=1... -106/227 files checked 48% done +106/236 files checked 40% done Checking sources/model/hd/data/treatment/MTreatmentBloodPrimeData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/data/treatment/MTreatmentBloodPrimeData.cpp: Q_PROPERTY=1;Q_ENUM=1... -107/227 files checked 48% done +107/236 files checked 41% done Checking sources/model/hd/data/treatment/MTreatmentDialysateFlowData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/data/treatment/MTreatmentDialysateFlowData.cpp: Q_PROPERTY=1;Q_ENUM=1... -108/227 files checked 48% done +108/236 files checked 41% done Checking sources/model/hd/data/treatment/MTreatmentHeparinData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/data/treatment/MTreatmentHeparinData.cpp: Q_PROPERTY=1;Q_ENUM=1... -109/227 files checked 48% done +109/236 files checked 41% done Checking sources/model/hd/data/treatment/MTreatmentOutletFlowData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/data/treatment/MTreatmentOutletFlowData.cpp: Q_PROPERTY=1;Q_ENUM=1... -110/227 files checked 49% done +110/236 files checked 41% done Checking sources/model/hd/data/treatment/MTreatmentPressureOcclusionData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/data/treatment/MTreatmentPressureOcclusionData.cpp: Q_PROPERTY=1;Q_ENUM=1... -111/227 files checked 49% done +111/236 files checked 41% done Checking sources/model/hd/data/treatment/MTreatmentRecirculateData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/data/treatment/MTreatmentRecirculateData.cpp: Q_PROPERTY=1;Q_ENUM=1... -112/227 files checked 49% done +112/236 files checked 41% done Checking sources/model/hd/data/treatment/MTreatmentRinsebackData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/data/treatment/MTreatmentRinsebackData.cpp: Q_PROPERTY=1;Q_ENUM=1... -113/227 files checked 49% done +113/236 files checked 41% done Checking sources/model/hd/data/treatment/MTreatmentSalineData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/data/treatment/MTreatmentSalineData.cpp: Q_PROPERTY=1;Q_ENUM=1... -114/227 files checked 49% done +114/236 files checked 41% done Checking sources/model/hd/data/treatment/MTreatmentStatesData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/data/treatment/MTreatmentStatesData.cpp: Q_PROPERTY=1;Q_ENUM=1... -115/227 files checked 49% done +115/236 files checked 42% done Checking sources/model/hd/data/treatment/MTreatmentStopData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/data/treatment/MTreatmentStopData.cpp: Q_PROPERTY=1;Q_ENUM=1... -116/227 files checked 50% done +116/236 files checked 42% done Checking sources/model/hd/data/treatment/MTreatmentTimeData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/data/treatment/MTreatmentTimeData.cpp: Q_PROPERTY=1;Q_ENUM=1... -117/227 files checked 50% done +117/236 files checked 42% done Checking sources/model/hd/data/treatmentlog/MTreatmentLogAlarmData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/data/treatmentlog/MTreatmentLogAlarmData.cpp: Q_PROPERTY=1;Q_ENUM=1... -118/227 files checked 50% done +118/236 files checked 42% done Checking sources/model/hd/data/treatmentlog/MTreatmentLogAvrgeData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/data/treatmentlog/MTreatmentLogAvrgeData.cpp: Q_PROPERTY=1;Q_ENUM=1... -119/227 files checked 50% done +119/236 files checked 42% done Checking sources/model/hd/data/treatmentlog/MTreatmentLogEventData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/hd/data/treatmentlog/MTreatmentLogEventData.cpp: Q_PROPERTY=1;Q_ENUM=1... -120/227 files checked 50% done +120/236 files checked 42% done Checking sources/model/settings/MBluetooth.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/settings/MBluetooth.cpp: Q_PROPERTY=1;Q_ENUM=1... -121/227 files checked 50% done +121/236 files checked 42% done Checking sources/model/settings/MSettings.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/settings/MSettings.cpp: Q_PROPERTY=1;Q_ENUM=1... -122/227 files checked 50% done +122/236 files checked 42% done Checking sources/model/ui/data/MUIBloodPressureData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/model/ui/data/MUIBloodPressureData.cpp: Q_PROPERTY=1;Q_ENUM=1... -123/227 files checked 51% done +123/236 files checked 43% done Checking sources/storage/FileHandler.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/storage/FileHandler.cpp: Q_PROPERTY=1;Q_ENUM=1... -124/227 files checked 52% done +124/236 files checked 44% done Checking sources/storage/Logger.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/storage/Logger.cpp: Q_PROPERTY=1;Q_ENUM=1... -125/227 files checked 54% done +125/236 files checked 45% done Checking sources/storage/Settings.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/storage/Settings.cpp: Q_PROPERTY=1;Q_ENUM=1... -126/227 files checked 54% done +126/236 files checked 46% done Checking sources/storage/StorageGlobals.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/storage/StorageGlobals.cpp: Q_PROPERTY=1;Q_ENUM=1... -127/227 files checked 55% done +127/236 files checked 46% done Checking sources/storage/TreatmentLog.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/storage/TreatmentLog.cpp: Q_PROPERTY=1;Q_ENUM=1... -128/227 files checked 57% done +128/236 files checked 48% done +Checking sources/update/Obfuscate.cpp ... +Defines:Q_PROPERTY=1;Q_ENUM=1 +Undefines: +Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ +Platform:Native +Checking sources/update/Obfuscate.cpp: Q_PROPERTY=1;Q_ENUM=1... +129/236 files checked 48% done +Checking sources/update/Package.cpp ... +Defines:Q_PROPERTY=1;Q_ENUM=1 +Undefines: +Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ +Platform:Native +Checking sources/update/Package.cpp: Q_PROPERTY=1;Q_ENUM=1... +130/236 files checked 50% done +Checking sources/update/PackageItem.cpp ... +Defines:Q_PROPERTY=1;Q_ENUM=1 +Undefines: +Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ +Platform:Native +Checking sources/update/PackageItem.cpp: Q_PROPERTY=1;Q_ENUM=1... +131/236 files checked 50% done +Checking sources/update/SignRsa.cpp ... +Defines:Q_PROPERTY=1;Q_ENUM=1 +Undefines: +Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ +Platform:Native +Checking sources/update/SignRsa.cpp: Q_PROPERTY=1;Q_ENUM=1... +132/236 files checked 51% done +Checking sources/update/UiProtocol.cpp ... +Defines:Q_PROPERTY=1;Q_ENUM=1 +Undefines: +Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ +Platform:Native +Checking sources/update/UiProtocol.cpp: Q_PROPERTY=1;Q_ENUM=1... +133/236 files checked 52% done +Checking sources/update/UiSwUpdate.cpp ... +Defines:Q_PROPERTY=1;Q_ENUM=1 +Undefines: +Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ +Platform:Native +Checking sources/update/UiSwUpdate.cpp: Q_PROPERTY=1;Q_ENUM=1... +134/236 files checked 52% done +Checking sources/update/UpdateProtocol.c ... +Defines:Q_PROPERTY=1;Q_ENUM=1 +Undefines: +Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ +Platform:Native +Checking sources/update/UpdateProtocol.c: Q_PROPERTY=1;Q_ENUM=1... +135/236 files checked 53% done +Checking sources/update/VSwUpdate.cpp ... +Defines:Q_PROPERTY=1;Q_ENUM=1 +Undefines: +Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ +Platform:Native +Checking sources/update/VSwUpdate.cpp: Q_PROPERTY=1;Q_ENUM=1... +136/236 files checked 55% done Checking sources/utility/crc.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/utility/crc.cpp: Q_PROPERTY=1;Q_ENUM=1... -129/227 files checked 57% done +137/236 files checked 55% done Checking sources/utility/encryption.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/utility/encryption.cpp: Q_PROPERTY=1;Q_ENUM=1... -130/227 files checked 57% done +138/236 files checked 55% done Checking sources/utility/format.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/utility/format.cpp: Q_PROPERTY=1;Q_ENUM=1... -131/227 files checked 58% done +139/236 files checked 55% done Checking sources/utility/qrcodegen.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/utility/qrcodegen.cpp: Q_PROPERTY=1;Q_ENUM=1... -132/227 files checked 60% done +140/236 files checked 57% done Checking sources/utility/types.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/utility/types.cpp: Q_PROPERTY=1;Q_ENUM=1... -133/227 files checked 60% done +141/236 files checked 57% done Checking sources/view/VAdjustmentResponseBase.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/VAdjustmentResponseBase.cpp: Q_PROPERTY=1;Q_ENUM=1... -134/227 files checked 60% done +142/236 files checked 57% done Checking sources/view/VEventSpy.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/VEventSpy.cpp: Q_PROPERTY=1;Q_ENUM=1... -135/227 files checked 60% done +143/236 files checked 58% done Checking sources/view/VGeneralEvent.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/VGeneralEvent.cpp: Q_PROPERTY=1;Q_ENUM=1... -136/227 files checked 61% done +144/236 files checked 58% done Checking sources/view/VTreatmentCreate(legacy).cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/VTreatmentCreate(legacy).cpp: Q_PROPERTY=1;Q_ENUM=1... -137/227 files checked 63% done +145/236 files checked 59% done Checking sources/view/VTreatmentCreate.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/VTreatmentCreate.cpp: Q_PROPERTY=1;Q_ENUM=1... -138/227 files checked 63% done +146/236 files checked 60% done Checking sources/view/confirm/VConfirm.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/confirm/VConfirm.cpp: Q_PROPERTY=1;Q_ENUM=1... -139/227 files checked 64% done +147/236 files checked 60% done Checking sources/view/dg/data/VDGAccelerometerData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/dg/data/VDGAccelerometerData.cpp: Q_PROPERTY=1;Q_ENUM=1... -140/227 files checked 64% done +148/236 files checked 60% done Checking sources/view/dg/data/VDGConductivityData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/dg/data/VDGConductivityData.cpp: Q_PROPERTY=1;Q_ENUM=1... -141/227 files checked 64% done +149/236 files checked 61% done Checking sources/view/dg/data/VDGDrainPumpData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/dg/data/VDGDrainPumpData.cpp: Q_PROPERTY=1;Q_ENUM=1... -142/227 files checked 64% done +150/236 files checked 61% done Checking sources/view/dg/data/VDGHeatersData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/dg/data/VDGHeatersData.cpp: Q_PROPERTY=1;Q_ENUM=1... -143/227 files checked 64% done +151/236 files checked 61% done Checking sources/view/dg/data/VDGLoadCellReadingsData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/dg/data/VDGLoadCellReadingsData.cpp: Q_PROPERTY=1;Q_ENUM=1... -144/227 files checked 64% done +152/236 files checked 61% done Checking sources/view/dg/data/VDGOperationModeData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/dg/data/VDGOperationModeData.cpp: Q_PROPERTY=1;Q_ENUM=1... -145/227 files checked 64% done +153/236 files checked 61% done Checking sources/view/dg/data/VDGPressuresData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/dg/data/VDGPressuresData.cpp: Q_PROPERTY=1;Q_ENUM=1... -146/227 files checked 64% done +154/236 files checked 61% done Checking sources/view/dg/data/VDGROPumpData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/dg/data/VDGROPumpData.cpp: Q_PROPERTY=1;Q_ENUM=1... -147/227 files checked 64% done +155/236 files checked 61% done Checking sources/view/dg/data/VDGReservoirData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/dg/data/VDGReservoirData.cpp: Q_PROPERTY=1;Q_ENUM=1... -148/227 files checked 64% done +156/236 files checked 61% done Checking sources/view/dg/data/VDGTemperaturesData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/dg/data/VDGTemperaturesData.cpp: Q_PROPERTY=1;Q_ENUM=1... -149/227 files checked 65% done +157/236 files checked 61% done Checking sources/view/dg/data/VDGValvesStatesData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/dg/data/VDGValvesStatesData.cpp: Q_PROPERTY=1;Q_ENUM=1... -150/227 files checked 65% done +158/236 files checked 61% done Checking sources/view/dg/data/post/VDGPOSTData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/dg/data/post/VDGPOSTData.cpp: Q_PROPERTY=1;Q_ENUM=1... -151/227 files checked 65% done +159/236 files checked 61% done Checking sources/view/dg/data/pretreatment/VDGFilterFlushData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/dg/data/pretreatment/VDGFilterFlushData.cpp: Q_PROPERTY=1;Q_ENUM=1... -152/227 files checked 65% done +160/236 files checked 61% done Checking sources/view/hd/adjustment/common/VCommonAdjustmentVitals.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/hd/adjustment/common/VCommonAdjustmentVitals.cpp: Q_PROPERTY=1;Q_ENUM=1... -153/227 files checked 65% done +161/236 files checked 62% done Checking sources/view/hd/adjustment/disinfect/VDisinfectAdjustDisinfect.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/hd/adjustment/disinfect/VDisinfectAdjustDisinfect.cpp: Q_PROPERTY=1;Q_ENUM=1... -154/227 files checked 66% done +162/236 files checked 62% done Checking sources/view/hd/adjustment/posttreatment/VPostTreatmentAdjustDisposablesRemovalConfirm.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/hd/adjustment/posttreatment/VPostTreatmentAdjustDisposablesRemovalConfirm.cpp: Q_PROPERTY=1;Q_ENUM=1... -155/227 files checked 66% done +163/236 files checked 62% done Checking sources/view/hd/adjustment/posttreatment/VPostTreatmentAdjustPatientDisconnectionConfirm.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/hd/adjustment/posttreatment/VPostTreatmentAdjustPatientDisconnectionConfirm.cpp: Q_PROPERTY=1;Q_ENUM=1... -156/227 files checked 66% done +164/236 files checked 62% done Checking sources/view/hd/adjustment/posttreatment/VPostTreatmentAdjustTreatmentLog.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/hd/adjustment/posttreatment/VPostTreatmentAdjustTreatmentLog.cpp: Q_PROPERTY=1;Q_ENUM=1... -157/227 files checked 67% done +165/236 files checked 63% done Checking sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentConsumablesConfirm.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentConsumablesConfirm.cpp: Q_PROPERTY=1;Q_ENUM=1... -158/227 files checked 67% done +166/236 files checked 63% done Checking sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentDisposablesConfirm.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentDisposablesConfirm.cpp: Q_PROPERTY=1;Q_ENUM=1... -159/227 files checked 67% done +167/236 files checked 63% done Checking sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentDisposablesPrime.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentDisposablesPrime.cpp: Q_PROPERTY=1;Q_ENUM=1... -160/227 files checked 67% done +168/236 files checked 63% done Checking sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentInitTreatment.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentInitTreatment.cpp: Q_PROPERTY=1;Q_ENUM=1... -161/227 files checked 67% done +169/236 files checked 63% done Checking sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentPatientConnectionBegin.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentPatientConnectionBegin.cpp: Q_PROPERTY=1;Q_ENUM=1... -162/227 files checked 67% done +170/236 files checked 63% done Checking sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentPatientConnectionConfirm.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentPatientConnectionConfirm.cpp: Q_PROPERTY=1;Q_ENUM=1... -163/227 files checked 67% done +171/236 files checked 63% done Checking sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentStartTreatment.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentStartTreatment.cpp: Q_PROPERTY=1;Q_ENUM=1... -164/227 files checked 67% done +172/236 files checked 63% done Checking sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentUltrafiltrationInit.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentUltrafiltrationInit.cpp: Q_PROPERTY=1;Q_ENUM=1... -165/227 files checked 68% done +173/236 files checked 64% done Checking sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentWaterSample.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentWaterSample.cpp: Q_PROPERTY=1;Q_ENUM=1... -166/227 files checked 68% done +174/236 files checked 64% done Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentDuration.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentDuration.cpp: Q_PROPERTY=1;Q_ENUM=1... -167/227 files checked 68% done +175/236 files checked 64% done Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentEnd.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentEnd.cpp: Q_PROPERTY=1;Q_ENUM=1... -168/227 files checked 68% done +176/236 files checked 64% done Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentFlows.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentFlows.cpp: Q_PROPERTY=1;Q_ENUM=1... -169/227 files checked 68% done +177/236 files checked 64% done Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentHeparin.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentHeparin.cpp: Q_PROPERTY=1;Q_ENUM=1... -170/227 files checked 68% done +178/236 files checked 64% done Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentPressuresLimits.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentPressuresLimits.cpp: Q_PROPERTY=1;Q_ENUM=1... -171/227 files checked 68% done +179/236 files checked 64% done Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentRecirculate.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentRecirculate.cpp: Q_PROPERTY=1;Q_ENUM=1... -172/227 files checked 69% done +180/236 files checked 64% done Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentRinseback.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentRinseback.cpp: Q_PROPERTY=1;Q_ENUM=1... -173/227 files checked 69% done +181/236 files checked 64% done Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentSaline.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentSaline.cpp: Q_PROPERTY=1;Q_ENUM=1... -174/227 files checked 69% done +182/236 files checked 64% done Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentUltrafiltrationConfirm.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentUltrafiltrationConfirm.cpp: Q_PROPERTY=1;Q_ENUM=1... -175/227 files checked 69% done +183/236 files checked 65% done Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentUltrafiltrationEdit.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentUltrafiltrationEdit.cpp: Q_PROPERTY=1;Q_ENUM=1... -176/227 files checked 69% done +184/236 files checked 65% done Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentUltrafiltrationState.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentUltrafiltrationState.cpp: Q_PROPERTY=1;Q_ENUM=1... -177/227 files checked 69% done +185/236 files checked 65% done Checking sources/view/hd/alarm/VAlarmActiveList.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/hd/alarm/VAlarmActiveList.cpp: Q_PROPERTY=1;Q_ENUM=1... -178/227 files checked 70% done +186/236 files checked 65% done Checking sources/view/hd/alarm/VAlarmStatus.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/hd/alarm/VAlarmStatus.cpp: Q_PROPERTY=1;Q_ENUM=1... -179/227 files checked 70% done +187/236 files checked 66% done Checking sources/view/hd/data/VHDAccelerometerData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/hd/data/VHDAccelerometerData.cpp: Q_PROPERTY=1;Q_ENUM=1... -180/227 files checked 70% done +188/236 files checked 66% done Checking sources/view/hd/data/VHDAirBubbleData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/hd/data/VHDAirBubbleData.cpp: Q_PROPERTY=1;Q_ENUM=1... -181/227 files checked 70% done +189/236 files checked 66% done Checking sources/view/hd/data/VHDAirTrapData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/hd/data/VHDAirTrapData.cpp: Q_PROPERTY=1;Q_ENUM=1... -182/227 files checked 70% done +190/236 files checked 66% done Checking sources/view/hd/data/VHDBloodLeakData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/hd/data/VHDBloodLeakData.cpp: Q_PROPERTY=1;Q_ENUM=1... -183/227 files checked 71% done +191/236 files checked 66% done Checking sources/view/hd/data/VHDOperationModeData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/hd/data/VHDOperationModeData.cpp: Q_PROPERTY=1;Q_ENUM=1... -184/227 files checked 71% done +192/236 files checked 66% done Checking sources/view/hd/data/VHDSyringePumpData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/hd/data/VHDSyringePumpData.cpp: Q_PROPERTY=1;Q_ENUM=1... -185/227 files checked 71% done +193/236 files checked 66% done Checking sources/view/hd/data/VTreatmentRanges.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/hd/data/VTreatmentRanges.cpp: Q_PROPERTY=1;Q_ENUM=1... -186/227 files checked 72% done +194/236 files checked 67% done Checking sources/view/hd/data/post/VHDPOSTData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/hd/data/post/VHDPOSTData.cpp: Q_PROPERTY=1;Q_ENUM=1... -187/227 files checked 72% done +195/236 files checked 67% done Checking sources/view/hd/data/posttreatment/VPostTreatmentStatesData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/hd/data/posttreatment/VPostTreatmentStatesData.cpp: Q_PROPERTY=1;Q_ENUM=1... -188/227 files checked 72% done +196/236 files checked 67% done Checking sources/view/hd/data/pretreatment/VPreTreatmentDisposablesPrimeData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/hd/data/pretreatment/VPreTreatmentDisposablesPrimeData.cpp: Q_PROPERTY=1;Q_ENUM=1... -189/227 files checked 72% done +197/236 files checked 67% done Checking sources/view/hd/data/pretreatment/VPreTreatmentSelfTestDryData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/hd/data/pretreatment/VPreTreatmentSelfTestDryData.cpp: Q_PROPERTY=1;Q_ENUM=1... -190/227 files checked 72% done +198/236 files checked 67% done Checking sources/view/hd/data/pretreatment/VPreTreatmentSelfTestNoCartridgeData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/hd/data/pretreatment/VPreTreatmentSelfTestNoCartridgeData.cpp: Q_PROPERTY=1;Q_ENUM=1... -191/227 files checked 72% done +199/236 files checked 67% done Checking sources/view/hd/data/pretreatment/VPreTreatmentStatesData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/hd/data/pretreatment/VPreTreatmentStatesData.cpp: Q_PROPERTY=1;Q_ENUM=1... -192/227 files checked 73% done +200/236 files checked 68% done Checking sources/view/hd/data/treatment/VHDTreatmentStatesData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/hd/data/treatment/VHDTreatmentStatesData.cpp: Q_PROPERTY=1;Q_ENUM=1... -193/227 files checked 74% done +201/236 files checked 69% done Checking sources/view/hd/data/treatment/VTreatmentBloodFlow.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/hd/data/treatment/VTreatmentBloodFlow.cpp: Q_PROPERTY=1;Q_ENUM=1... -194/227 files checked 74% done +202/236 files checked 69% done Checking sources/view/hd/data/treatment/VTreatmentBloodPrimeData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/hd/data/treatment/VTreatmentBloodPrimeData.cpp: Q_PROPERTY=1;Q_ENUM=1... -195/227 files checked 75% done +203/236 files checked 69% done Checking sources/view/hd/data/treatment/VTreatmentDialysateFlow.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/hd/data/treatment/VTreatmentDialysateFlow.cpp: Q_PROPERTY=1;Q_ENUM=1... -196/227 files checked 75% done +204/236 files checked 69% done Checking sources/view/hd/data/treatment/VTreatmentHeparinData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/hd/data/treatment/VTreatmentHeparinData.cpp: Q_PROPERTY=1;Q_ENUM=1... -197/227 files checked 75% done +205/236 files checked 69% done Checking sources/view/hd/data/treatment/VTreatmentPressureOcclusion.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/hd/data/treatment/VTreatmentPressureOcclusion.cpp: Q_PROPERTY=1;Q_ENUM=1... -198/227 files checked 75% done +206/236 files checked 69% done Checking sources/view/hd/data/treatment/VTreatmentRecirculateData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/hd/data/treatment/VTreatmentRecirculateData.cpp: Q_PROPERTY=1;Q_ENUM=1... -199/227 files checked 75% done +207/236 files checked 69% done Checking sources/view/hd/data/treatment/VTreatmentRinsebackData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/hd/data/treatment/VTreatmentRinsebackData.cpp: Q_PROPERTY=1;Q_ENUM=1... -200/227 files checked 75% done +208/236 files checked 70% done Checking sources/view/hd/data/treatment/VTreatmentSalineData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/hd/data/treatment/VTreatmentSalineData.cpp: Q_PROPERTY=1;Q_ENUM=1... -201/227 files checked 75% done +209/236 files checked 70% done Checking sources/view/hd/data/treatment/VTreatmentStopData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/hd/data/treatment/VTreatmentStopData.cpp: Q_PROPERTY=1;Q_ENUM=1... -202/227 files checked 75% done +210/236 files checked 70% done Checking sources/view/hd/data/treatment/VTreatmentTime.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/hd/data/treatment/VTreatmentTime.cpp: Q_PROPERTY=1;Q_ENUM=1... -203/227 files checked 75% done +211/236 files checked 70% done Checking sources/view/hd/data/treatment/VTreatmentUltrafiltration.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/hd/data/treatment/VTreatmentUltrafiltration.cpp: Q_PROPERTY=1;Q_ENUM=1... -204/227 files checked 75% done +212/236 files checked 70% done Checking sources/view/settings/VAdjustmentAlarmVolume.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/settings/VAdjustmentAlarmVolume.cpp: Q_PROPERTY=1;Q_ENUM=1... -205/227 files checked 75% done +213/236 files checked 70% done Checking sources/view/settings/VAdjustmentDGCleaningUsage.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/settings/VAdjustmentDGCleaningUsage.cpp: Q_PROPERTY=1;Q_ENUM=1... -206/227 files checked 76% done +214/236 files checked 70% done Checking sources/view/settings/VAdjustmentInstitutionalRecord.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/settings/VAdjustmentInstitutionalRecord.cpp: Q_PROPERTY=1;Q_ENUM=1... -207/227 files checked 76% done +215/236 files checked 70% done Checking sources/view/settings/VAdjustmentServiceDates.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/settings/VAdjustmentServiceDates.cpp: Q_PROPERTY=1;Q_ENUM=1... -208/227 files checked 76% done +216/236 files checked 70% done Checking sources/view/settings/VAdjustmentServiceMode.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/settings/VAdjustmentServiceMode.cpp: Q_PROPERTY=1;Q_ENUM=1... -209/227 files checked 76% done +217/236 files checked 71% done Checking sources/view/settings/VAdjustmentVersions.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/settings/VAdjustmentVersions.cpp: Q_PROPERTY=1;Q_ENUM=1... -210/227 files checked 76% done +218/236 files checked 71% done Checking sources/view/settings/VBluetooth.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/settings/VBluetooth.cpp: Q_PROPERTY=1;Q_ENUM=1... -211/227 files checked 77% done +219/236 files checked 72% done Checking sources/view/settings/VCloudSync.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/settings/VCloudSync.cpp: Q_PROPERTY=1;Q_ENUM=1... -212/227 files checked 77% done +220/236 files checked 72% done Checking sources/view/settings/VDateTime.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/settings/VDateTime.cpp: Q_PROPERTY=1;Q_ENUM=1... -213/227 files checked 78% done +221/236 files checked 72% done Checking sources/view/settings/VDuetRoWaterDG.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/settings/VDuetRoWaterDG.cpp: Q_PROPERTY=1;Q_ENUM=1... -214/227 files checked 78% done +222/236 files checked 72% done Checking sources/view/settings/VHDUsageInfo.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/settings/VHDUsageInfo.cpp: Q_PROPERTY=1;Q_ENUM=1... -215/227 files checked 78% done +223/236 files checked 72% done Checking sources/view/settings/VNetworkModel.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/settings/VNetworkModel.cpp: Q_PROPERTY=1;Q_ENUM=1... -216/227 files checked 79% done +224/236 files checked 73% done Checking sources/view/settings/VSettings.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/view/settings/VSettings.cpp: Q_PROPERTY=1;Q_ENUM=1... -217/227 files checked 80% done +225/236 files checked 74% done Checking sources/wifi/WifiInterface.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking sources/wifi/WifiInterface.cpp: Q_PROPERTY=1;Q_ENUM=1... -218/227 files checked 83% done +226/236 files checked 76% done Checking unittests/tst_acknow.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking unittests/tst_acknow.cpp: Q_PROPERTY=1;Q_ENUM=1... -219/227 files checked 83% done +227/236 files checked 76% done Checking unittests/tst_canbus.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking unittests/tst_canbus.cpp: Q_PROPERTY=1;Q_ENUM=1... -220/227 files checked 84% done +228/236 files checked 77% done +Checking unittests/tst_fileHandler.cpp ... +Defines:Q_PROPERTY=1;Q_ENUM=1 +Undefines: +Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ +Platform:Native +Checking unittests/tst_fileHandler.cpp: Q_PROPERTY=1;Q_ENUM=1... +229/236 files checked 77% done Checking unittests/tst_initializations.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking unittests/tst_initializations.cpp: Q_PROPERTY=1;Q_ENUM=1... -221/227 files checked 84% done +230/236 files checked 77% done Checking unittests/tst_logging.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking unittests/tst_logging.cpp: Q_PROPERTY=1;Q_ENUM=1... -222/227 files checked 84% done +231/236 files checked 78% done Checking unittests/tst_messaging.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking unittests/tst_messaging.cpp: Q_PROPERTY=1;Q_ENUM=1... -223/227 files checked 86% done +232/236 files checked 79% done Checking unittests/tst_models.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking unittests/tst_models.cpp: Q_PROPERTY=1;Q_ENUM=1... -224/227 files checked 97% done +233/236 files checked 97% done Checking unittests/tst_threads.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking unittests/tst_threads.cpp: Q_PROPERTY=1;Q_ENUM=1... -225/227 files checked 97% done +234/236 files checked 97% done Checking unittests/tst_utilities.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking unittests/tst_utilities.cpp: Q_PROPERTY=1;Q_ENUM=1... -226/227 files checked 97% done +235/236 files checked 98% done Checking unittests/tst_views.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native Checking unittests/tst_views.cpp: Q_PROPERTY=1;Q_ENUM=1... -227/227 files checked 100% done +236/236 files checked 100% done Index: denali.pro =================================================================== diff -u -r99cf0dc3002c0395f0d10d1d4fb34e2052449fd6 -rf2763cc4a2f823371fe7d9474d01b93b7de935c1 --- denali.pro (.../denali.pro) (revision 99cf0dc3002c0395f0d10d1d4fb34e2052449fd6) +++ denali.pro (.../denali.pro) (revision f2763cc4a2f823371fe7d9474d01b93b7de935c1) @@ -57,6 +57,7 @@ LIBS += -lssl -lcrypto INCLUDEPATH += \ + /usr/include/c++/7 \ common \ sources \ sources/device \ Index: denali.pro.user =================================================================== diff -u -r99cf0dc3002c0395f0d10d1d4fb34e2052449fd6 -rf2763cc4a2f823371fe7d9474d01b93b7de935c1 --- denali.pro.user (.../denali.pro.user) (revision 99cf0dc3002c0395f0d10d1d4fb34e2052449fd6) +++ denali.pro.user (.../denali.pro.user) (revision f2763cc4a2f823371fe7d9474d01b93b7de935c1) @@ -1,6 +1,6 @@ - + EnvironmentId