diff options
author | Pedro Giffuni <pfg@apache.org> | 2011-10-12 00:30:28 +0000 |
---|---|---|
committer | Pedro Giffuni <pfg@apache.org> | 2011-10-12 00:30:28 +0000 |
commit | 18bfd9d5385765ed63818d776473b1505f0adaa8 (patch) | |
tree | cbe9d7b18b6942416152bccb8345c9ca53ce2858 /xmloff/inc | |
parent | 7de53f9d42fd7347d41d5945dbb37473b83a22e4 (diff) |
118485 - Styles for OLEs are not saved. Submitted by Armin Le Grand.
Diffstat (limited to 'xmloff/inc')
-rw-r--r-- | xmloff/inc/xmloff/xmlimp.hxx | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/xmloff/inc/xmloff/xmlimp.hxx b/xmloff/inc/xmloff/xmlimp.hxx index 871703bf9ed7..594b8ed47eef 100644 --- a/xmloff/inc/xmloff/xmlimp.hxx +++ b/xmloff/inc/xmloff/xmlimp.hxx @@ -453,13 +453,25 @@ public: static const sal_uInt16 OOo_1x = 10; static const sal_uInt16 OOo_2x = 20; - static const sal_uInt16 OOo_Current = 30; + // --> ORW + static const sal_uInt16 OOo_30x = 30; + static const sal_uInt16 OOo_31x = 31; + static const sal_uInt16 OOo_32x = 32; + static const sal_uInt16 OOo_33x = 33; + static const sal_uInt16 OOo_34x = 34; + static const sal_uInt16 ProductVersionUnknown = SAL_MAX_UINT16; + // <-- /** this checks the build ID and returns * OOo_1x for files created with OpenOffice.org 1.x or StarOffice 7 (this also includes binary import over binfilter) * OOo_2x for files created with OpenOffice.org 2.x or StarOffice 8 - * OOo_Current for files created with OpenOffice.org 3.x and StarOffice9 or newer or for files not created with OpenOffice.org or StarOffice + * OOo_30x for files created with OpenOffice.org 3.0/3.0.1 or StarOffice 9/9 PU01 + * OOo_31x for files created with OpenOffice.org 3.1/3.1.1 or StarOffice 9 PU02/9 PU03 + * OOo_32x for files created with OpenOffice.org 3.2/3.2.1 or StarOffice 9 PU04 or Oracle Open Office 3.2.1 + * OOo_33x for files created with OpenOffice.org 3.3 (and minors) or Oracle Open Office 3.3 (and minors) + * OOo_34x for files created with OpenOffice.org 3.4 Beta or Oracle Open Office 3.4 Beta + * ProductVersionUnknown for files not created with OpenOffice.org, StarOffice or Oracle Open Office */ sal_uInt16 getGeneratorVersion() const; |