Clone Tools
  • last updated a few minutes ago
Constraints
Constraints: committers
 
Constraints: files
Constraints: dates
yes I did.

yes I did.

these are combined/bundled states. look into the cpp. that is I added an extra _ in the name to distinguish them.

these are combined/bundled states.
look into the cpp.
that is I added an extra _ in the name to distinguish them.

Thanks for reminding me the situation with the comment. that is right in View classes we need to. maybe later we can move these checks all in the settings controller, from this view. RESOLVED.

Thanks for reminding me the situation with the comment.
that is right in View classes we need to.
maybe later we can move these checks all in the settings controller, from this view.

RESOLVED.

RESOLVED

RESOLVED

RESOLVED

RESOLVED

RESOLVED

RESOLVED

RESOLVED

RESOLVED

Do you have the HD state for these like the other ones we have ? If yes, can you please put the ///<

Do you have the HD state for these like the other ones we have ? If yes, can you please put the ///<

Type in the name, reservoir missing an r

Type in the name, reservoir missing an r

//DEBUG, please

//DEBUG, please

Did you intentionally left this commented out ?

Did you intentionally left this commented out ?

Please add //DEBUG

Please add //DEBUG

RESOLVED

RESOLVED

RESOLVED

RESOLVED

added

added

Added

Added

Please put //DEBUG

Please put //DEBUG

Please put //DEBUG

Please put //DEBUG

DEN-15905 - DEN-15548 - UI-BN-S102-Log178 - Application [ Ready ]
DEN-15905 - DEN-15548 - UI-BN-S102-Log178 - Application [ Ready ]
Changed

Changed

Added.

Added.

Added.

Added.

Changed based on how GuiView handles the connection from a created-in-QML object.

Changed based on how GuiView handles the connection from a created-in-QML object.

This I will align similar to how the others look in the AppController. The SLOT/SIGNAL keywords are aligned.

This I will align similar to how the others look in the AppController. The SLOT/SIGNAL keywords are aligned.

this is incorrect connection usage. it should be moved to the applicationController class. The rule of API design: *the API is just emitting the signal *and is not responsible for the usage. *an...

this is incorrect connection usage.
it should be moved to the applicationController class.

The rule of API design:

  • the API is just emitting the signal
  • and is not responsible for the usage.
  • any object which needs to use it will connect and use (connects the signal to its own slot and runs the logic in its own thread)


Please move to ApplicationController class.

please check, lists are not empty. can be checked by private member variable: isConfigOk = isConfigOk && ! _<Property Name>.isEmpty();

please check, lists are not empty.
can be checked by private member variable:

isConfigOk = isConfigOk && ! _<Property Name>.isEmpty();
add an empty line before and after

add an empty line before and after

please align SIGNAL(did SLOT( on

please align
SIGNAL(did
SLOT( on

please do not use else. make it like the others on top. Look at lines 79 - 83. And insert it in between lines 89,90 with two empty line on top and bottom of the if block if ( ! codition ) { err ...

please do not use else.
make it like the others on top.
Look at lines 79 - 83.
And insert it in between lines 89,90
with two empty line on top and bottom of the if block

if ( ! codition ) {
  err = ;
  LOG_ ;
  return err;
}


thanks