diff options
author | Eike Rathke <erack@redhat.com> | 2016-08-03 15:14:34 +0200 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2016-08-03 15:16:50 +0200 |
commit | 4afd35f691ffbf369e90e031b17379f52a31c510 (patch) | |
tree | 4b09406762b7c2af31becbc4d77150ac2de0b562 /formula | |
parent | f21a73bc5b1f13708e0f3ccd2c9d654c3ddc76be (diff) |
use GRAM_API instead of GRAM_PODF_A1 in API context
... which right now is identical but may get corrections in future.
Change-Id: Id4e1707afb32a3d8e073705072e5e65105f2a14a
Diffstat (limited to 'formula')
-rw-r--r-- | formula/source/core/api/grammar.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/formula/source/core/api/grammar.cxx b/formula/source/core/api/grammar.cxx index c013f26aa9fd..cc2aec21088a 100644 --- a/formula/source/core/api/grammar.cxx +++ b/formula/source/core/api/grammar.cxx @@ -28,7 +28,7 @@ FormulaGrammar::Grammar FormulaGrammar::mapAPItoGrammar( const bool bEnglish, co if (bEnglish && bXML) eGrammar = GRAM_PODF; else if (bEnglish && !bXML) - eGrammar = GRAM_PODF_A1; + eGrammar = GRAM_API; else if (!bEnglish && bXML) eGrammar = GRAM_NATIVE_ODF; else // (!bEnglish && !bXML) |