Index: sources/bluetooth/BluetoothInterface.cpp =================================================================== diff -u -reb6e7c4cd003132f309ac54b436e93a72e599975 -r464253c287d13649c70c5f3c60b62be02e1d3eb2 --- sources/bluetooth/BluetoothInterface.cpp (.../BluetoothInterface.cpp) (revision eb6e7c4cd003132f309ac54b436e93a72e599975) +++ sources/bluetooth/BluetoothInterface.cpp (.../BluetoothInterface.cpp) (revision 464253c287d13649c70c5f3c60b62be02e1d3eb2) @@ -1149,7 +1149,7 @@ * \param vDiastolic - Diastolic Viral value * \param vPulseRate - Pulse Rate Viral value */ -void BluetoothInterface::mimic( quint16 vSystolic , +void BluetoothInterface::mimic(quint16 vSystolic , quint16 vDiastolic , quint16 vPulseRate ) { MUIBloodPressure model(vSystolic , Index: sources/bluetooth/BluetoothInterface.h =================================================================== diff -u -reb6e7c4cd003132f309ac54b436e93a72e599975 -r464253c287d13649c70c5f3c60b62be02e1d3eb2 --- sources/bluetooth/BluetoothInterface.h (.../BluetoothInterface.h) (revision eb6e7c4cd003132f309ac54b436e93a72e599975) +++ sources/bluetooth/BluetoothInterface.h (.../BluetoothInterface.h) (revision 464253c287d13649c70c5f3c60b62be02e1d3eb2) @@ -80,9 +80,9 @@ public: bool isValid( ) const { return _isValid ; } void valid(bool vValid) { _isValid = vValid; } - void mimic(const quint16 vSystolic , - const quint16 vDiastolic , - const quint16 vPulseRate ); + void mimic(quint16 vSystolic , + quint16 vDiastolic , + quint16 vPulseRate ); protected: void timerEvent(QTimerEvent *event) override;