~ubuntu-branches/ubuntu/karmic/openoffice.org-l10n/karmic

« back to all changes in this revision

Viewing changes to ooo-build/patches/dev300/xlsx-export-skip-auto-format.diff

  • Committer: Bazaar Package Importer
  • Author(s): Chris Cheney
  • Date: 2009-05-26 18:00:00 UTC
  • Revision ID: james.westby@ubuntu.com-20090526180000-t5otxzhj1rru5ovt
Tags: 1:3.1.0-3ubuntu2
* Copy of the openoffice.org source.
  - debian/changelog: Change source name.
  - debian/control.in: Change source name.
  - debian/control: Regenerate control file.

* Correct path to splitgsi in convert2po.
* Disable gsi-export for Rosetta due to bug in localize.pl.
* Reenable building on sparc.
* Switch boost to 1.38.
* Resynchronise with ooo-build-3-1 (271b85e5ce6b601d75d0693b9c937d1eabd069dc).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
From 3e8f5ab3cc7fc0286f3048ed2cc020a9c16c9aa5 Mon Sep 17 00:00:00 2001
 
2
From: Jan Nieuwenhuizen <janneke@gnu.org>
 
3
Date: Tue, 12 May 2009 16:20:36 +0200
 
4
Subject: [PATCH] OOXML: do not write XML_useAutoFormatting key without value.  Fixes n#497560.
 
5
 
 
6
     * Modified     sc/source/filter/xlsx/xlsx-xepivot.cxx
 
7
 
 
8
---
 
9
 sc/source/filter/xlsx/xlsx-xepivot.cxx |    4 +++-
 
10
 1 files changed, 3 insertions(+), 1 deletions(-)
 
11
 
 
12
diff --git sc/source/filter/xlsx/xlsx-xepivot.cxx sc/source/filter/xlsx/xlsx-xepivot.cxx
 
13
index d255cc4..c19bee2 100644
 
14
--- sc/source/filter/xlsx/xlsx-xepivot.cxx
 
15
+++ sc/source/filter/xlsx/xlsx-xepivot.cxx
 
16
@@ -1376,7 +1376,9 @@ void XclExpPivotTable::SaveXml( XclExpXmlStream& rStrm )
 
17
             XML_enableDrill,                XclXmlUtils::ToPsz( maPTExtInfo.mnFlags & EXC_SXEX_DRILLDOWN ), // ???
 
18
             // OOXTODO: XML_enableFieldProperties,      [ SXEx fEnableFieldDialog (maPTExtInfo.mnFlags) ]
 
19
             // OOXTODO: XML_preserveFormatting,         [ SXEx fPreserveFormatting (maPTExtInfo.mnFlags) ]
 
20
-            XML_useAutoFormatting,
 
21
+#if 0
 
22
+            // XML_useAutoFormatting, [???],
 
23
+#endif
 
24
             // OOXTODO: XML_pageWrap,                   [ SXEx cWrapPage (maPTExtInfo.mnFlags) ]
 
25
             // OOXTODO: XML_pageOverThenDown,           [ SXEx fAcrossPageLay (maPTExtInfo.mnFlags) ]
 
26
             // OOXTODO: XML_subtotalHiddenItems,        [ SXEx fSubtotalHiddenPageItems (maPTExtInfo.mnFlags) ]
 
27
-- 
 
28
1.6.0.rc1.49.g98a8
 
29