added Lithuanian "LTL" to EUROCONVERT(), CONVERT()

Change-Id: Iefde129177df827c4b6508ff190f20e1e1973221
Reviewed-on: https://gerrit.libreoffice.org/11088
Reviewed-by: Thomas Arnhold <thomas@arnhold.org>
Tested-by: Thomas Arnhold <thomas@arnhold.org>
This commit is contained in:
Aurimas Fišeras
2014-08-23 11:50:56 +03:00
committed by Thomas Arnhold
parent 0b3e1d9b22
commit 21c8b5815a
2 changed files with 13 additions and 1 deletions

View File

@@ -217,6 +217,17 @@
<value>0.702804</value>
</prop>
</node>
<node oor:name="CR19" oor:op="replace">
<prop oor:name="FromUnit">
<value>EUR</value>
</prop>
<prop oor:name="ToUnit">
<value>LTL</value>
</prop>
<prop oor:name="Factor">
<value>3.45280</value>
</prop>
</node>
</node>
<node oor:name="Calculate">
<node oor:name="Other">

View File

@@ -2795,7 +2795,8 @@ static bool lclConvertMoney( const OUString& aSearchUnit, double& rfRate, int& r
{ "CYP", 0.585274, 2 },
{ "SKK", 30.1260, 2 },
{ "EEK", 15.6466, 2 },
{ "LVL", 0.702804, 2 }
{ "LVL", 0.702804, 2 },
{ "LTL", 3.45280, 2 }
};
static const size_t nConversionCount = sizeof( aConvertTable ) / sizeof( aConvertTable[0] );