fvogt added inline comments.

INLINE COMMENTS

> main.cpp:330
> +    // Item could not be retrieved from wallet. Open dialog
> +    if (item.isEmpty()) {
> +        if (type == TypeConfirm) {

Can you replace this if with

  if (!item.isEmpty()) {
      QTextStream(stdout) << item;
      return 0;
  }

That way there's one layer of indentation less on the following code.

> main.cpp:331
> +    if (item.isEmpty()) {
> +        if (type == TypeConfirm) {
> +            if (KMessageBox::questionYesNo(0, dialog, i18n("Ksshaskpass")) 
> != KMessageBox::Yes) {

Please use `switch(type) { case TypeConfirm: { ...} ... }` instead of an 
if..else if..else chain.

REPOSITORY
  R105 KDE SSH Password Dialog

REVISION DETAIL
  https://phabricator.kde.org/D9875

To: pali, fvogt
Cc: fvogt, plasma-devel, ragreen, Pitel, ZrenBot, lesliezhai, ali-mohamed, 
jensreuterberg, abetts, sebas, apol, mart

Reply via email to