components

Clone Tools
  • last updated a few seconds ago
Constraints
Constraints: committers
 
Constraints: files
Constraints: dates
DEN-7756: Addressed code review comments

  1. … 14 more files in changeset.
This is used in INTERPRET_RECVD_MT_MESSAGE in MessageInterpreter.cpp. It is overridden so a broadcast is sent out instead of a direct message to the HD.

This is used in INTERPRET_RECVD_MT_MESSAGE in MessageInterpreter.cpp.
It is overridden so a broadcast is sent out instead of a direct message to the HD.

Done

Done

Fixed

Fixed

Done

Done

That works too. No need for tee here. I've updated it

That works too. No need for tee here. I've updated it

I think VDateTime.h is less safe in this case. It should be updated to match if (_process.state() != QProcess::NotRunning) { return; } to prevent re-starting the process when its already in the "S...

I think VDateTime.h is less safe in this case. It should be updated to match

if (_process.state() != QProcess::NotRunning) { return; }

to prevent re-starting the process when its already in the "Starting" state as well as the "Running" state.

    enum ProcessState {
        NotRunning,
        Starting,
        Running
    }; 
I've removed it now. It's the same CAN channel as in the parent class so no need to override it.

I've removed it now. It's the same CAN channel as in the parent class so no need to override it.

AlarmVolumeTemp has been removed

AlarmVolumeTemp has been removed

It is removed now

It is removed now

Done

Done

DEN-8316: TxLog: Implementation [Simulator/Testing]

  1. … 50 more files in changeset.
DEN-8303 Meeting & Support - General Purpose

- Adding two other Alarms parameters to the log

- Fixed the ProgressCircle component circle color.

- Adding a simple detail screen for the Treatment Log Review screen

- Popping up the keyboard when get into the Date/Time screen.

-

  1. … 10 more files in changeset.
As it seems in the qml these properties are not used directly in UI and only the key/value pairs are used. So it would be better to have key or value as QStringList properties and change these prop...

As it seems in the qml these properties are not used directly in UI and only the key/value pairs are used.
So it would be better to have key or value as QStringList properties and change these properties to just values.

For the properties, we don't use 'm' as a prefix and only start the name with no capital letter.

For the properties, we don't use 'm' as a prefix and only start the name with no capital letter.

please put tr() for translation.

please put tr() for translation.

please put tr() for translation.

please put tr() for translation.

The one which has been used in the VDateTime is much cleaner: if (_process.state() == QProcess::Running) { return; }

The one which has been used in the VDateTime is much cleaner:

if (_process.state() == QProcess::Running) {
    return;
}
please move it in an appropriate folder(hd/adjustment)

please move it in an appropriate folder(hd/adjustment)

please move it in an appropriate folder(dg/adjustment)

please move it in an appropriate folder(dg/adjustment)

Where it is used?

Where it is used?

please change this to eDG.

please change this to eDG.

Please use 'fontPixel' prefix for your font's pixelSize variables to distinguish between the different properties of the font.

Please use 'fontPixel' prefix for your font's pixelSize variables to distinguish between the different properties of the font.

Please don't use "%0" as we discussed.

Please don't use "%0" as we discussed.

Regarding our discussion, this will be replaced by a new enum ID_AlarmVolumeSetRsp next to ID_AlarmVolumeSetReq.

Regarding our discussion, this will be replaced by a new enum ID_AlarmVolumeSetRsp next to ID_AlarmVolumeSetReq.

please also use the 'a' not only it is consistent with most of the cases but also makes it executable for other user groups(if any).

please also use the 'a' not only it is consistent with most of the cases but also makes it executable for other user groups(if any).

Was there a reason the tee command is being used, instead of simply using > like : echo "$1" > /sys/class/backlight/backlight-mipi/brightness ?

Was there a reason the tee command is being used, instead of simply using > like :

echo "$1" > /sys/class/backlight/backlight-mipi/brightness

?

What is this line used for?

What is this line used for?

Interesting. Why it is a broadcast instead of a request/response? Why does UI need a broadcast message while it will always be adjusted by UI?

Interesting.
Why it is a broadcast instead of a request/response?
Why does UI need a broadcast message while it will always be adjusted by UI?

It prevents updates to alarmVolume by the HD broadcast while we're editing the alarm volume. Otherwise, alarmVolume could be incorrectly updated by an HD broadcast of a set alarm volume that the us...

It prevents updates to alarmVolume by the HD broadcast while we're editing the alarm volume.
Otherwise, alarmVolume could be incorrectly updated by an HD broadcast of a set alarm volume that the user decided to cancel.