Kaydet (Commit) 127f863c authored tarafından Eike Rathke's avatar Eike Rathke

added Estonian "EEK" to EUROCONVERT(), fdo#73239

Change-Id: Ib4c82992e12758fcec6c667c57849935cd518972
üst 0fb94d6d
......@@ -2532,7 +2532,11 @@ void ScInterpreter::ScHyperLink()
}
}
bool lclConvertMoney( const OUString& aSearchUnit, double& rfRate, int& rnDec )
/** Resources at the website of the European Commission:
http://ec.europa.eu/economy_finance/euro/adoption/conversion/
http://ec.europa.eu/economy_finance/euro/countries/
*/
static bool lclConvertMoney( const OUString& aSearchUnit, double& rfRate, int& rnDec )
{
struct ConvertInfo
{
......@@ -2557,7 +2561,8 @@ bool lclConvertMoney( const OUString& aSearchUnit, double& rfRate, int& rnDec )
{ "SIT", 239.640, 2 },
{ "MTL", 0.429300, 2 },
{ "CYP", 0.585274, 2 },
{ "SKK", 30.1260, 2 }
{ "SKK", 30.1260, 2 },
{ "EEK", 15.6466, 2 }
};
const size_t nConversionCount = sizeof( aConvertTable ) / sizeof( aConvertTable[0] );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment