diff options
author | Thorsten Behrens <tbehrens@suse.com> | 2012-06-05 03:59:46 +0200 |
---|---|---|
committer | Thorsten Behrens <tbehrens@suse.com> | 2012-06-05 05:11:21 +0200 |
commit | d0af38eaa029c2f2c2617544c8b6798c463381b9 (patch) | |
tree | d58dcd95c3c66cecbbcfb7a39d8775e409884690 /unotools | |
parent | 24c260a271ec5f086b7883a6ed258e02af799d61 (diff) |
Add ODF1.2 extended-but-more-compatible mode
With several legacy pre-ODF1.2 and ODF1.2-only consumers out there,
folks wanted a more backward-compatible ODF1.2 extended mode, that
uses stuff deprecated in 1.2, and/or is 'bug-compatible' to older
OOo-versions.
Therefore, adding ODFVER_012_EXT_COMPAT, and sticking it to several
attributes that were ODFVER_LATEST before.
Diffstat (limited to 'unotools')
-rw-r--r-- | unotools/inc/unotools/saveopt.hxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/unotools/inc/unotools/saveopt.hxx b/unotools/inc/unotools/saveopt.hxx index 0f20d621fbc0..f16d859e4dab 100644 --- a/unotools/inc/unotools/saveopt.hxx +++ b/unotools/inc/unotools/saveopt.hxx @@ -67,6 +67,7 @@ public: ODFVER_011 = 2, // ODF 1.1 DO_NOT_USE = 3, // Do not use this, only here for compatibility with pre OOo 3.2 configuration ODFVER_012 = 4, // ODF 1.2 + ODFVER_012_EXT_COMPAT = 8, // ODF 1.2 extended, but with compatibility fallbacks ODFVER_LATEST = SAL_MAX_ENUM, // ODF latest version with enhancements }; |