diff options
Diffstat (limited to 'deskutils/abacus/files/patch-ah')
-rw-r--r-- | deskutils/abacus/files/patch-ah | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/deskutils/abacus/files/patch-ah b/deskutils/abacus/files/patch-ah new file mode 100644 index 000000000000..a2d76493894f --- /dev/null +++ b/deskutils/abacus/files/patch-ah @@ -0,0 +1,20 @@ +--- tcl_interf/interf_aux.cc.orig Thu Dec 30 12:30:22 1999 ++++ tcl_interf/interf_aux.cc Thu Dec 30 12:33:44 1999 +@@ -480,7 +480,7 @@ + to->value=from->value; + to->ivalue=from->ivalue; + to->label=from->label; +- to->formula=&(Formula(strlen(aux_s),aux_s)); ++ to->formula=new Formula(strlen(aux_s),aux_s); + free(aux_s); + } + if(from->type==CODE_NUMBER) +@@ -512,7 +512,7 @@ + to->value=from->value; + to->ivalue=from->ivalue; + to->label=from->label; +- to->formula=&(Formula(strlen(aux_s),aux_s)); ++ to->formula=new Formula(strlen(aux_s),aux_s); + free(aux_s); + } + } |