[Libreoffice-commits] .: 2 commits - autodoc/source
Tor Lillqvist
tml at kemper.freedesktop.org
Wed Aug 31 07:24:42 PDT 2011
autodoc/source/parser_i/idoc/docu_pe2.cxx | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
New commits:
commit fc2661c50bccc223175f04674a786191478d2ba1
Author: Tor Lillqvist <tlillqvist at novell.com>
Date: Wed Aug 31 17:23:00 2011 +0300
Don't allow the "LO" abbreviation
diff --git a/autodoc/source/parser_i/idoc/docu_pe2.cxx b/autodoc/source/parser_i/idoc/docu_pe2.cxx
index d675103..ec18bc7 100644
--- a/autodoc/source/parser_i/idoc/docu_pe2.cxx
+++ b/autodoc/source/parser_i/idoc/docu_pe2.cxx
@@ -617,7 +617,6 @@ SapiDocu_PE::CheckVersionSyntax_OOo(const String & i_versionPart1)
{
return i_versionPart1 == "OOo"
OR i_versionPart1 == "OpenOffice.org"
- OR i_versionPart1 == "LO"
OR i_versionPart1 == "LibreOffice";
}
commit 09f9c1f7c24fff88d3632da795467aa06fdcb68f
Author: Laurent Godard <oooconv at free.fr>
Date: Wed Aug 31 15:26:52 2011 +0200
allow LibreOffice reference in IDL @since tag
diff --git a/autodoc/source/parser_i/idoc/docu_pe2.cxx b/autodoc/source/parser_i/idoc/docu_pe2.cxx
index 2f1af7f..d675103 100644
--- a/autodoc/source/parser_i/idoc/docu_pe2.cxx
+++ b/autodoc/source/parser_i/idoc/docu_pe2.cxx
@@ -616,7 +616,9 @@ bool
SapiDocu_PE::CheckVersionSyntax_OOo(const String & i_versionPart1)
{
return i_versionPart1 == "OOo"
- OR i_versionPart1 == "OpenOffice.org";
+ OR i_versionPart1 == "OpenOffice.org"
+ OR i_versionPart1 == "LO"
+ OR i_versionPart1 == "LibreOffice";
}
bool
More information about the Libreoffice-commits
mailing list