From c861253041829aabae1df3164229c89458843dd7 Mon Sep 17 00:00:00 2001 From: angelo Date: Tue, 14 Nov 1995 14:19:37 +0000 Subject: [PATCH] Rif. mod. 95/52. Corretto salvataggio della sezione general su file testo: mancavano gli apici per racchiudere il carattere di posizionamento. git-svn-id: svn://10.65.10.50/trunk@2150 c028cbd2-c16b-5b4b-a496-9718f37d4682 --- include/form.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/form.cpp b/include/form.cpp index c3f8f2637..2748afec8 100755 --- a/include/form.cpp +++ b/include/form.cpp @@ -2175,7 +2175,7 @@ void TForm::print_general(ostream& out) const out << " SIZE " << _fontsize << "\n" ; if (_char_to_pos != '\0') { - out << " CARATTERE " << _char_to_pos << "\n" ; + out << " CARATTERE \"" << _char_to_pos << "\"\n" ; out << " INIZIO_POS " << _ipx << " " << _ipy << "\n"; out << " FINE_POS " << _fpx << "\n"; }