From c92bf19c53e056164a282b4cc49d94a70584b14d Mon Sep 17 00:00:00 2001 From: alex Date: Mon, 10 Oct 1994 09:35:59 +0000 Subject: [PATCH] Sostituito un costruttore inesistente di TConto git-svn-id: svn://10.65.10.50/trunk@335 c028cbd2-c16b-5b4b-a496-9718f37d4682 --- cg/cglib02.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cg/cglib02.cpp b/cg/cglib02.cpp index 696f44cc6..cb4fbf941 100755 --- a/cg/cglib02.cpp +++ b/cg/cglib02.cpp @@ -53,7 +53,8 @@ void TTab_conti::aggiorna_conto(const TConto& tcon, int anno_es, const real& imp TConto* tc = (TConto*) objptr(key); if (tc == NULL) { - tc = new TConto(tcon); + tc = new TConto(tcon.gruppo(), tcon.conto(), tcon.sottoconto(), + tcon.tipo()); add(key, tc); tc->dare() = ZERO; tc->avere() = ZERO;