diff --git a/sc/sc0100.cpp b/sc/sc0100.cpp index 4a88f210d..05626ee99 100755 --- a/sc/sc0100.cpp +++ b/sc/sc0100.cpp @@ -136,7 +136,7 @@ void TSaldaconto_app::gioca_cambi(TMask& m, int force) int sc0100(int argc, char* argv[]) { - TSaldaconto_app salda; - salda.run(argc, argv, "Gestione Saldaconto"); + TSaldaconto_app* salda = new TSaldaconto_app; + salda->run(argc, argv, "Gestione Saldaconto"); return 0; } diff --git a/sc/sc0100a.uml b/sc/sc0100a.uml index 6a3d93f62..b7c565f27 100755 --- a/sc/sc0100a.uml +++ b/sc/sc0100a.uml @@ -16,7 +16,7 @@ ENDPAGE PAGE "Selezione partite" -1 -1 77 20 -LIST F_TIPO 1 12 +LIST F_TIPO 1 10 BEGIN PROMPT 1 1 "Tipo conto " ITEM " |Conto" diff --git a/sc/sc0100p.uml b/sc/sc0100p.uml index 7d797cf8f..c611d8875 100755 --- a/sc/sc0100p.uml +++ b/sc/sc0100p.uml @@ -5,12 +5,16 @@ TOOLBAR "" 0 20 0 2 BUTTON DLG_SAVEREC 10 2 BEGIN PROMPT -13 -1 "~Registra" + PICTURE BMP_SAVEREC + PICTURE BMP_SAVERECDN MESSAGE EXIT,K_ENTER END BUTTON DLG_DELREC 10 2 BEGIN PROMPT -23 -1 "~Elimina" + PICTURE BMP_DELREC + PICTURE BMP_DELRECDN MESSAGE EXIT,K_DEL END diff --git a/sc/sc0101.cpp b/sc/sc0101.cpp index 56712c003..f8887f118 100755 --- a/sc/sc0101.cpp +++ b/sc/sc0101.cpp @@ -617,7 +617,7 @@ bool TFattura_mask::read_scadenze() { TRelation rel(LF_PARTITE); rel.curr() = _fattura; - autoload(&rel); + autoload(rel); // Attenzione: alcune fatture (*) possono non avere il totale del documento! if (get(E_TOTALE).empty())