Bug #251
geschlossenWidget [storePasswordCheck] not found
Beschreibung
Trying to update a paypal account from kmymoney returns in the ui
19:56:26 AqBanking v6.4.0.0
19:56:26 Sende Aufträge an die Bank(en)
19:56:26 Aufträge nach Konto sortieren
19:56:26 Konten-Aufträge nach Providern sortieren
19:56:26 Aufträge an Provider verteilen
19:56:26 Aufträge an Provider "AQPAYPAL" übergeben
19:56:26 Zugriff auf Benutzer "14"
19:56:30 Vorgang abgeschlossen, Sie können das Fenster nun schließen.
In the log there is shown:
3:2021/12/29 19-53-02:(null)(8515):cppgui.cpp: 141: CppGuiLinker::OpenDialog
3:2021/12/29 19-53-02:(null)(8515):provider_sendcmd.c: 298: Handling user "xxx"
3:2021/12/29 19-53-06:gwen(8515):dialog.c: 695: Widget [storePasswordCheck] not found
3:2021/12/29 19-53-06:gwen(8515):padd.c: 210: First byte is not a 0x60
Dateien
Von rhabacker vor mehr als 3 Jahren aktualisiert
- Datei 0001-Fix-warning-dialog.c-695-Widget-storePasswordCheck-n.patch wurde hinzugefügt
Von mlenk vor mehr als 3 Jahren aktualisiert
I just briefly looked into th patch you provided. When looking at this line:
if (xdlg->flags & 2)
Using literal flag values is ugly, because it hides the intention of checked condition of the if clause.
Did you mean to use the GWEN_GUI_INPUT_FLAGS_SHOW
flag as defined in src/gui/gui.h
?
Regards,
Micha
Von rhabacker vor mehr als 3 Jahren aktualisiert
If this value is used at the https://github.com/aqbanking/gwenhywfar/blob/0f041ffe9520bba4a2fc0ace2b300041a8f0c91e/src/gui/dlg_input.c#L64 location, then yes. I simply used the the same value.
Von rhabacker vor mehr als 3 Jahren aktualisiert
- Datei 0001-Fix-warning-dialog.c-695-Widget-storePasswordCheck-n.patch wurde hinzugefügt
Updated patch to match conditions used in GWEN_DlgInput_new()
Von rhabacker vor mehr als 3 Jahren aktualisiert
- Datei
0001-Fix-warning-dialog.c-695-Widget-storePasswordCheck-n.patchwurde gelöscht
Von rhabacker vor mehr als 3 Jahren aktualisiert
- Datei 0001-Fix-warning-dialog.c-695-Widget-storePasswordCheck-n.patch 0001-Fix-warning-dialog.c-695-Widget-storePasswordCheck-n.patch wurde hinzugefügt
- Datei
0001-Fix-warning-dialog.c-695-Widget-storePasswordCheck-n.patchwurde gelöscht
Patch updated
To avoid duplicated code to set `n` a new input dialog attribute `storePasswordCheckEnabled` has been added and used in GWEN_DlgInput_Fini().
Von martin vor mehr als 3 Jahren aktualisiert
- Status wurde von New zu Resolved geändert
Thanks!!, applied to git.
Von martin vor mehr als 3 Jahren aktualisiert
- Status wurde von Resolved zu Closed geändert
Von rhabacker vor fast 3 Jahren aktualisiert
I saw this fix in 'master' branch, not in 'maint' - is this intended ?