ooo-build r13306 - in trunk: . scratch/sc-xlsutil/src



Author: kyoshida
Date: Sat Jul 19 03:11:18 2008
New Revision: 13306
URL: http://svn.gnome.org/viewvc/ooo-build?rev=13306&view=rev

Log:
2008-07-18  Kohei Yoshida  <kyoshida novell com>

	* scratch/sc-xlsutil/src/formula.py: distinguish relative addresses 
	from absolute addresses when displaying cell address.


Modified:
   trunk/ChangeLog
   trunk/scratch/sc-xlsutil/src/formula.py

Modified: trunk/scratch/sc-xlsutil/src/formula.py
==============================================================================
--- trunk/scratch/sc-xlsutil/src/formula.py	(original)
+++ trunk/scratch/sc-xlsutil/src/formula.py	Sat Jul 19 03:11:18 2008
@@ -52,7 +52,7 @@
     colRelative = ((col & 0x4000) != 0)
     rowRelative = ((col & 0x8000) != 0)
     col = (col & 0x00FF)
-    obj = CellAddress(col, row)
+    obj = CellAddress(col, row, colRelative, rowRelative)
     return obj
 
 def parseCellRangeAddress (bytes):



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]