Fix spelling; fix `ifndef` statement (#437)* Fix more typos* Regenerate ignored words list codespell.txt
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>
show more ...
pre-commit auto remove trailing whitespace from h files (#385)Another big auto clean up by pre-commit similar to the others
pre-commit auto remove trailing whitespace from C files (#386)Another big whitespace clean up
pre-commit auto clean trailing whitespace in dxp and hxx files (#381)A huge auto clean up by pre-commit and I can make smaller PRs if needed.Seems we have a lot of extra whitespace junk in our co
pre-commit auto clean trailing whitespace in dxp and hxx files (#381)A huge auto clean up by pre-commit and I can make smaller PRs if needed.Seems we have a lot of extra whitespace junk in our code baseThe NeverEnding Story was a great film back in the old days :)Great video and theme song by Limahlhttps://www.youtube.com/watch?v=lHytjEj7B9ghttps://en.wikipedia.org/wiki/The_NeverEnding_Story_(film)
pre-commit auto remove trailing whitespace from `.mk` files (#377)If there are too many changes / files I can create a smaller PRThanks
pre-commit(end-of-file-fixer): autofix more cxx files in main (#314)
pre-commit(end-of-file-fixer): auto fix `.bat` and `.c` files (#280)
pre-commit(end-of-file-fixer): auto fix `.mk` files (#266)* pre-commit(end-of-file-fixer): auto fix `.mk` files* Update makefile.mk* Update makefile.mk---------Co-authored-by: Matthias Seid
pre-commit(end-of-file-fixer): auto fix `.mk` files (#266)* pre-commit(end-of-file-fixer): auto fix `.mk` files* Update makefile.mk* Update makefile.mk---------Co-authored-by: Matthias Seidel <mseidel@apache.org>
Fixed typos, cleanup
Fix end of hxx files remove unneeded blank lines (#242)
misc: fix spelling (#213)* misc: fix spelling * Update olepersist.cxx --------- Co-authored-by: Matthias Seidel <mseidel@apache.org>
Using vim modeline, cleanup
Fix potential memory alignment issues on X86_64.Clang version 4.0 and newer uses SSE instructions that require16-byte alignment to zero memory allocated using the C++ new operator.The internal me
Fix potential memory alignment issues on X86_64.Clang version 4.0 and newer uses SSE instructions that require16-byte alignment to zero memory allocated using the C++ new operator.The internal memory allocator does not understand anything largerthan 8-byte alignment. Modify it to be capable of doing 16-bytealignment when necessary.There is also a debug layer beneath the C++ new and delete operatorsthat is enabled by the --enable-debug configure option. This layeradds 8 to the requested size of any allocations before calling theunderlying allocator, adds a known signature to the start of thememory block, and then adds an 8 byte offset to the pointer beforereturning it to the caller. The delete operator basically does thereverse, checking for the proper signature. Modify this code sothat it adds and subtracts a 16-byte offset on X86_64 so that aproperly aligned block from the underlying allocator does not causenew to return a misaligned pointer.Modify set_soenv.in so that it always requests 16-byte alignmenton X86_64 so that the ABI is the same independent of the toolchain.git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1830406 13f79535-47bb-0310-9956-ffa450edef68
Add some "Revision" svn keywords.Revisions were used within the tree, perhaps inherited by previous CVS/Subversion usage. Re-use them now since we have been lazy about updating them manually and
Add some "Revision" svn keywords.Revisions were used within the tree, perhaps inherited by previous CVS/Subversion usage. Re-use them now since we have been lazy about updating them manually and because they can be useful for bug reports.git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1775979 13f79535-47bb-0310-9956-ffa450edef68
Replace 0 with NULL for pointers.Only applied to C code: common syntax for C++ is different (nullptr).Found with coccinelle: http://coccinelle.lip6.fr/git-svn-id: https://svn.apache.org/repos/
Replace 0 with NULL for pointers.Only applied to C code: common syntax for C++ is different (nullptr).Found with coccinelle: http://coccinelle.lip6.fr/git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1738404 13f79535-47bb-0310-9956-ffa450edef68
Bring to SAL a wrapper implementation of the powr() IEEE 754 math function.This function was originally brought in r1444110 and is useful forOOXML compatibility. At this time it is not being used
Bring to SAL a wrapper implementation of the powr() IEEE 754 math function.This function was originally brought in r1444110 and is useful forOOXML compatibility. At this time it is not being used to fix theoriginal issue it was meant to address but it is convenient forfuture use.It also reduces the differences from FreeBSD's port which willbe receiving updates.git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1669456 13f79535-47bb-0310-9956-ffa450edef68
#i124896# remove obsoleted sal-module-internal custom STL allocatorThe SAL module avoided the heavy dependency on the stlport4-libraries by usinga custom allocator for its internal STL containers.
#i124896# remove obsoleted sal-module-internal custom STL allocatorThe SAL module avoided the heavy dependency on the stlport4-libraries by usinga custom allocator for its internal STL containers. With stlport4 removed thesedependencies are gone and the SAL-internal custom allocator is obsoleted. Sincethe custom allocator results in build problems with clang>=3.4 or xcode>=5.1 itis time to remove it for good.git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1594842 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
i118923 - OS/2 port: use libc memory allocator to reduce fragmentation.git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1545312 13f79535-47bb-0310-9956-ffa450edef68
#i122362# remove stlport4-build supportbut keep the --without-stlport configure option for nowit is the new default anywaygit-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1543067 1
#i122362# remove stlport4-build supportbut keep the --without-stlport configure option for nowit is the new default anywaygit-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1543067 13f79535-47bb-0310-9956-ffa450edef68
i123001 - force destructor to be called before libc calls DosExit().git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1539965 13f79535-47bb-0310-9956-ffa450edef68
Revert of r1444110git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1446344 13f79535-47bb-0310-9956-ffa450edef68
i114430 - AOO Calc: 0^0=1 and it should be indeterminate.Many spreadsheets and math packages set the value of POWER( 0, 0)to 1 as that sometimes is required for some calculations. Thisis also don
i114430 - AOO Calc: 0^0=1 and it should be indeterminate.Many spreadsheets and math packages set the value of POWER( 0, 0)to 1 as that sometimes is required for some calculations. Thisis also done by the standard C99 libc pow() function.In mathematical terms the value is an indeterminate form andin strict mathematical sense such value should at least beconsidered with caution.OpenFormula permits implementation defined values of 0, 1or error in this case. We shall now return NaN.Clean some headers while here.git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1444110 13f79535-47bb-0310-9956-ffa450edef68
Update headers to Alv2 headersgit-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1292501 13f79535-47bb-0310-9956-ffa450edef68
12