From 71605dca0f6de19db82b77b28fde96d84be82376 Mon Sep 17 00:00:00 2001 From: luca Date: Tue, 16 Dec 2008 11:57:34 +0000 Subject: [PATCH] =?UTF-8?q?Patch=20level=20=20=20=20=20=20=20=20=20:10.0?= =?UTF-8?q?=20Files=20correlati=20=20=20=20=20:=20Ricompilazione=20Demo=20?= =?UTF-8?q?:=20[=20]=20Commento=20=20=20=20=20=20=20=20=20=20=20=20:aggiun?= =?UTF-8?q?ta=20la=20possibilit=C3=A0=20ai=20TCSV=5Frecordset=20di=20gesti?= =?UTF-8?q?re=20colonne=20excel=20con=20lettera=20doppia=20tipo=20AA,AB=20?= =?UTF-8?q?ecc.=20Prima=20arrivava=20solo=20a=20Z=20(necessario=20per=20An?= =?UTF-8?q?ival=20the=20Canival)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: svn://10.65.10.50/trunk@17910 c028cbd2-c16b-5b4b-a496-9718f37d4682 --- include/textset.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/textset.cpp b/include/textset.cpp index 48245d774..a2bbd0628 100755 --- a/include/textset.cpp +++ b/include/textset.cpp @@ -96,8 +96,9 @@ int TText_recordset::find_column(const char* column) const for (const char* c = column; isalpha(*c); c++) { n *= 26; - n += toupper(*c)-'A'; + n += toupper(*c)-'@'; } + n--; } } return n;