Update bg_BG.xml (#445)* Update bg_BG.xmlAdd EURO as default currency in Bulgarian locale data* OpenOffice Calc offers functions for converting from old national currencies to EURO.Bulgaria jo
Update bg_BG.xml (#445)* Update bg_BG.xmlAdd EURO as default currency in Bulgarian locale data* OpenOffice Calc offers functions for converting from old national currencies to EURO.Bulgaria joins the euro area in 2026, see:https://www.ecb.europa.eu/euro/changeover/bulgaria/html/index.en.html
show more ...
More spelling fixes (#434)* Fix more typos* Regenerate ignored words list codespell.txt
Replace 2do -> TODO, minor cleanup
pre-commit auto remove trailing whitespace from cxx files (#383)Another big auto clean up. So many lines !!Another one bites the dusthttps://www.youtube.com/watch?v=rY0WxgSXdEECo-authored-by:
pre-commit auto remove trailing whitespace from cxx files (#383)Another big auto clean up. So many lines !!Another one bites the dusthttps://www.youtube.com/watch?v=rY0WxgSXdEECo-authored-by: Matthias Seidel <mseidel@apache.org>
DDE links are subject to authorization
pre-commit(end-of-file-fixer): autofix more cxx files in main (#314)
misc: fix spelling (#186)* misc: fix spelling * Update cmdid.h * Update svdopath.cxx * Update RowSetCache.cxx --------- Co-authored-by: Matthias Seidel <mseidel@apache.org>
Merge pull request #164 from DamjanJovanovic/editeng-32bit-paragraphsUpdate EditEngine code to use 32 bit paragraph storage
OpenOffice Calc offers functions for converting from old national currencies to EURO.Croatia joined the euro area in 2023, see:https://www.ecb.europa.eu/euro/changeover/croatia/html/index.en.html
Convert all instances of FieldClicked() to take a 32 bit paragraph index.Patch by: me
Convert all instances of SetParaAttribs() to take a 32 bit paragraph index.Patch by: me
Convert all instances of GetParaAttribs() to take a 32 bit paragraph index.Patch by: me
Change the CalcFieldValue() parameter to sal_uInt32 across the whole codebase.Patch by: me
Preliminary attempt to convert all instances of GetParagraphCount()to return a sal_uInt32 or sal_uLong, and fix any related problemsin all their callers.Patch by: me
Fixed typo (arbitray -> arbitrary)
OpenOffice Calc offers functions for converting from old national currencies to EURO.Additional countries joined the euro area: Estonia (2011), Latvia (2014) and Lithuania (2015), see:https://www.
OpenOffice Calc offers functions for converting from old national currencies to EURO.Additional countries joined the euro area: Estonia (2011), Latvia (2014) and Lithuania (2015), see:https://www.ecb.europa.eu/euro/changeover/estonia/html/index.en.htmlhttps://www.ecb.europa.eu/euro/changeover/latvia/html/index.en.htmlhttps://www.ecb.europa.eu/euro/changeover/lithuania/html/index.en.htmlThis patch adds those currencies and conversion rates for CONVERT (Calc.xcu) and EUROCONVERT (interpr2.cxx).git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1859148 13f79535-47bb-0310-9956-ffa450edef68
Port main/sc to gbuild.Also add the ability to add extra image directories to resources,which is needed by main/sc.Patch by: megit-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@177
Port main/sc to gbuild.Also add the ability to add extra image directories to resources,which is needed by main/sc.Patch by: megit-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1778876 13f79535-47bb-0310-9956-ffa450edef68
RAND(): Destroy the random pool after seeding.We are using rtl_random() only for seeding, we can save some memory here.git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1746363 13f79
RAND(): Destroy the random pool after seeding.We are using rtl_random() only for seeding, we can save some memory here.git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1746363 13f79535-47bb-0310-9956-ffa450edef68
#i126901# CSV import: values with + or - followed by thousand separator and3 digits (eg. +,123) are imported as a numberDo not allow numbers parsed from CVS files when "Detect special numbers" is
#i126901# CSV import: values with + or - followed by thousand separator and3 digits (eg. +,123) are imported as a numberDo not allow numbers parsed from CVS files when "Detect special numbers" isoff, to contain thousand separators before digits, even if after a +/- sign(eg. -,123 or +,789). Treat these as strings instead.Also added unit tests for this and exported the ScStringUtil class so itcan be tested.Patch by: megit-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1737624 13f79535-47bb-0310-9956-ffa450edef68
#i126701# Patch for adding bit shift functions to calcPatch by: Pathangi Janardhanan Jatinshravan <JATINSHR001 at e dot ntu dot edu dot sg>Review by: megit-svn-id: https://svn.apache.org/repo
#i126701# Patch for adding bit shift functions to calcPatch by: Pathangi Janardhanan Jatinshravan <JATINSHR001 at e dot ntu dot edu dot sg>Review by: megit-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1718196 13f79535-47bb-0310-9956-ffa450edef68
#i126668# Addition of Bitwise Arithmetic Operations (BITAND, BITOR and BITXOR) in calcPatch by: Pathangi Janardhanan Jatinshravan <JATINSHR001 at e dot ntu dot edu dot sg>Review by: megit-svn-
#i126668# Addition of Bitwise Arithmetic Operations (BITAND, BITOR and BITXOR) in calcPatch by: Pathangi Janardhanan Jatinshravan <JATINSHR001 at e dot ntu dot edu dot sg>Review by: megit-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1715605 13f79535-47bb-0310-9956-ffa450edef68
Minor cleanups in the random generator code.Drop unused variables.Enhance slightly the naming of static variables.git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1675168 13f79535-
Minor cleanups in the random generator code.Drop unused variables.Enhance slightly the naming of static variables.git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1675168 13f79535-47bb-0310-9956-ffa450edef68
Re-implement Calc's RAND() function using a variant of KISS PRNG.George Marsaglia's KISS algorithm is a rather simple implementationof a random number generator but it has interesting properties w
Re-implement Calc's RAND() function using a variant of KISS PRNG.George Marsaglia's KISS algorithm is a rather simple implementationof a random number generator but it has interesting properties with respect ot the traditional Mersenne Twister.I used the 2011 32 bit Multiply-with-carry variant, with anundetermined period which is known to be not less than 10^40000000;it is known to pass all the statistical tests.The Apache OpenOffice implementation uses an aggressive seedingscheme based on the internal rtl_random functions, rendering thefunction basically unpredictable. As a side effect it is also notpossible to specify a seed for repeatability. No claims are made concerning crypto-safeness.The specific adaption for Apache OpenOffice is:Copyright 2015 Pedro GiffuniAll rights reserved.Huge thanks to Steve Kargl for pointing me to the algorithm andthe late George Marsaglia for creating it in the first place.git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1669455 13f79535-47bb-0310-9956-ffa450edef68
Many spelling fixes: directories r* - z*.Attempt to clean up most but certainly not all the spellingmistakes that found home in OpenOffice through decades. Wecould probably blame the internationa
Many spelling fixes: directories r* - z*.Attempt to clean up most but certainly not all the spellingmistakes that found home in OpenOffice through decades. Wecould probably blame the international nature of the code butit is somewhat shameful that this wasn't done before.git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1591062 13f79535-47bb-0310-9956-ffa450edef68
i124361: Removed unreachable code to avoid warnings.git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1575931 13f79535-47bb-0310-9956-ffa450edef68
123