[Libreoffice-commits] .: src/xlsrecord.py src/xlsstream.py

Kohei Yoshida kohei at kemper.freedesktop.org
Mon Aug 8 13:38:19 PDT 2011


 src/xlsrecord.py |    2 +-
 src/xlsstream.py |    8 ++++----
 2 files changed, 5 insertions(+), 5 deletions(-)

New commits:
commit db6e4877fe99e70f1a890e7409a780a666bf2621
Author: Kohei Yoshida <kohei.yoshida at suse.com>
Date:   Mon Aug 8 16:38:50 2011 -0400

    Fixed a bunch of chart record names.

diff --git a/src/xlsrecord.py b/src/xlsrecord.py
index b75225b..05432ea 100644
--- a/src/xlsrecord.py
+++ b/src/xlsrecord.py
@@ -3290,7 +3290,7 @@ class Chart(BaseRecordHandler):
         self.appendLine("size: (width, height) = (%d, %d)"%(w, h))
         
         
-class CHSeries(BaseRecordHandler):
+class Series(BaseRecordHandler):
 
     DATE     = 0
     NUMERIC  = 1
diff --git a/src/xlsstream.py b/src/xlsstream.py
index 651f856..bf3a4ac 100644
--- a/src/xlsstream.py
+++ b/src/xlsstream.py
@@ -238,12 +238,12 @@ recData = {
     0x08A3: ["FORCEFULLCALCULATION", "Force Full Calculation Mode"],
     0x1001: ["UNITS", "[unused, must be ignored]"],
     0x1002: ["CHART", "Position And Size of Chart Area", xlsrecord.Chart],
-    0x1003: ["CHSERIES", "Chart Series", xlsrecord.CHSeries],
+    0x1003: ["SERIES", "Data Properties for Series, Trendlines or Error Bars", xlsrecord.Series],
     0x1006: ["CHDATAFORMAT", "?"],
-    0x1007: ["CHLINEFORMAT", "Line or Border Formatting of A Chart"],
+    0x1007: ["LINEFORMAT", "Appearance of A Line"],
     0x1009: ["CHMARKERFORMAT", "?"],
     0x100D: ["CHSTRING", "Series Category Name or Title Text in Chart"],
-    0x100A: ["CHAREAFORMAT", "Area Formatting Attribute of A Chart"],
+    0x100A: ["AREAFORMAT", "Patterns and Colors in Filled Region of Chart"],
     0x100B: ["CHPIEFORMAT", "?"],
     0x100C: ["CHATTACHEDLABEL", "?"],
     0x100D: ["CHSTRING", "?"],
@@ -264,7 +264,7 @@ recData = {
     0x1025: ["CHTEXT", "?"],
     0x1026: ["CHFONT", "?"],
     0x1027: ["CHOBJECTLINK", "?"],
-    0x1032: ["CHFRAME", "Border and Area Formatting of A Chart"],
+    0x1032: ["FRAME", "Type, Size and Position of the Frame around A Chart"],
     0x1033: ["BEGIN", "Start of Chart Sheet Substream"],
     0x1034: ["END", "End of Chart Sheet Substream"],
     0x1035: ["CHPLOTFRAME", "Chart Plot Frame"],


More information about the Libreoffice-commits mailing list