d2b26721 | 17-Jul-2024 |
mseidel |
Fixed typo (completly -> completely) and many more (cherry picked from commit 870c37922ca0ef0ac9f3f6f409d697814dc73d8a) |
Revision tags: AOO420-Dev5-m5 |
|
509df7cb | 30-Nov-2023 |
John Bampton |
misc: fix spelling (#187) * misc: fix spelling * Update TestExtension.java * Update FilterFactory.idl * Update ExtendedTypeDetectionFactory.idl * Update L
misc: fix spelling (#187) * misc: fix spelling * Update TestExtension.java * Update FilterFactory.idl * Update ExtendedTypeDetectionFactory.idl * Update LocationTest.java * Update HelpComponent.java * Update HelpSearch.java * Update TestExtension.java * Update SOReportJobFactory.java --------- Co-authored-by: Matthias Seidel <mseidel@apache.org> (cherry picked from commit 7f5c89d5b2565ed069498a1c8ac682c2e94f3fe2)
show more ...
|
f2e5373e | 13-Aug-2023 |
mseidel |
Fixed typos, removed whitespace (cherry picked from commit 0399a9fdaf9a50397f1c64f11d2eab3459cab875) |
75978596 | 25-May-2023 |
mseidel |
Remove executable flag from various files (2nd part) (cherry picked from commit 44c622283a957b8371c60d67433418fc80119f9d) |
Revision tags: AOO4115-GA, AOO4114-GA, AOO420-Dev4-m4 |
|
a39cd05d | 09-Dec-2022 |
Arrigo Marchiori |
More checks (cherry picked from commit 908738a448df22237df99329d2e7141e168737d9) |
ebc38751 | 18-Nov-2022 |
mseidel |
Fixed typo (verion -> version) and some more (cherry picked from commit 8b33d20757e07ac9aab7f43fc8912a001433f5ba) |
80d1657b | 21-Oct-2022 |
Damjan Jovanovic |
Free the rtl_UnicodeToTextContext with rtl_destroyTextToUnicodeContext() instead of rtl_destroyTextToUnicodeConverter(). This fixes https://bz.apache.org/ooo/show_bug.cgi?id=128539
Free the rtl_UnicodeToTextContext with rtl_destroyTextToUnicodeContext() instead of rtl_destroyTextToUnicodeConverter(). This fixes https://bz.apache.org/ooo/show_bug.cgi?id=128539 Patch by: me (cherry picked from commit fb3d7646562a8e2f3f690b2fdbc7faaa1b30aa42)
show more ...
|
Revision tags: AOO4113-GA, AOO4112-GA, AOO4111-GA, AOO420-Dev3-m3, AOO4110-GA, AOO419-GA, AOO418-GA |
|
6d53c851 | 25-Sep-2020 |
mseidel |
Fixed typo (explicitely -> explicitly) and some more (cherry picked from commit 56b8eddca8dfa483d4f8ff0d4ce385505d8407b6) |
f228387c | 14-Jul-2020 |
mseidel |
Fixed typos (legth -> length) (cherry picked from commit a92f749c422f0f18a141e8b94143f0247f4203fb) |
9b334b11 | 14-Jul-2020 |
mseidel |
Removed whitespace, fixed typos (cherry picked from commit cc0d486e17fd60d16afad971db04744fdfa9434c) |
Revision tags: 420-Dev2-m2, AOO417, AOO420-Dev-m1 |
|
635e0213 | 21-Dec-2018 |
Matthias Seidel |
i81715 - RFE: 16:9 (16:10) widescreen page format This adds 16:9 and 16:10 as screen format for Impress (and Draw). The new strings are visible for en-US immediately and will be for
i81715 - RFE: 16:9 (16:10) widescreen page format This adds 16:9 and 16:10 as screen format for Impress (and Draw). The new strings are visible for en-US immediately and will be for other languages after the next run of our Pootle synchronisation. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1849494 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
Revision tags: AOO416 |
|
adc7b1f7 | 02-Dec-2018 |
Matthias Seidel |
i123192 - Word Count Dialog: last digit truncated at the right Patch by: hanya Thank you for your contribution! git-svn-id: https://svn.apache.org/repos/asf/openoffice/trun
i123192 - Word Count Dialog: last digit truncated at the right Patch by: hanya Thank you for your contribution! git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1847988 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
Revision tags: AOO416-RC1 |
|
60607307 | 09-Aug-2018 |
Don Lewis |
nActiveCharPos can be less than mnMinCharPos if the ScriptItemize() call in UniscribeLayout::LayoutText() finds a mult-character script item that starts in the leading context and overlaps in
nActiveCharPos can be less than mnMinCharPos if the ScriptItemize() call in UniscribeLayout::LayoutText() finds a mult-character script item that starts in the leading context and overlaps into the start of the run. UniscribeLayout::LayoutText() drops the glyphs for the context characters, but does not (yet?) adjust the starting character position of the item. Since the text layout direction can't change in the middle of the offending script item, we can safely use the direction at the start of the run. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1837765 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
d9b868a3 | 11-Jul-2018 |
Matthias Seidel |
Minor cleanup git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1835669 13f79535-47bb-0310-9956-ffa450edef68 |
c1e8cc3a | 01-May-2018 |
Don Lewis |
The register storage class is deprecated and is incompatible with C++17. Modern compilers have mostly been ignoring it, probably other than to forbid the use of the address-of operator. Get
The register storage class is deprecated and is incompatible with C++17. Modern compilers have mostly been ignoring it, probably other than to forbid the use of the address-of operator. Get ahead of the game and delete it now. Reported by clang 6. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1830707 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
Revision tags: AOO415 |
|
cbfee35e | 25-Nov-2017 |
Damjan Jovanovic |
Add range checking to PNG palette indexes, as per OSS-Fuzz issue 574. Patch by: me git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1816295 13f79535-47bb-
Add range checking to PNG palette indexes, as per OSS-Fuzz issue 574. Patch by: me git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1816295 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
Revision tags: AOO414, AOO413 |
|
b296461c | 01-Sep-2016 |
truckman |
Fix -Wshift-negative-value compiler warnings. The result of shifting negative integer values is undefined, so change the operand to be unsigned. git-svn-id: https://svn.ap
Fix -Wshift-negative-value compiler warnings. The result of shifting negative integer values is undefined, so change the operand to be unsigned. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1758692 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
Revision tags: AOO4121 |
|
487b2be3 | 01-Dec-2015 |
Pedro Giffuni |
Prevent division by zero CID: 735658, 735659 git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1717552 13f79535-47bb-0310-9956-ffa450edef68 |
Revision tags: AOO412, SNAPSHOT, AOO411 |
|
6dcc4730 | 24-Sep-2015 |
Andrea Pescetti |
#i126560# Fix print job counter reset. Patch by: Damjan Jovanovic <damjan@apache.org> git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1705193 13f79535-47bb-0310-9956-f
#i126560# Fix print job counter reset. Patch by: Damjan Jovanovic <damjan@apache.org> git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1705193 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
c4e09a47 | 15-Oct-2014 |
Herbert Dürr |
#i63015# always default to WinAnsiEncoding for non-symbol PDF-Type1 export Suggested-By: edv@gruene.de Reviewed-By: hdu@apache.org git-svn-id: https://svn.apache.org/repos/
#i63015# always default to WinAnsiEncoding for non-symbol PDF-Type1 export Suggested-By: edv@gruene.de Reviewed-By: hdu@apache.org git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1631975 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
36813a85 | 21-May-2014 |
Herbert Dürr |
#i124915# use target device dependent font height again Setting a fixed default font height parameter doesn't make much sense when neither the target device nor its mapping mode nor its
#i124915# use target device dependent font height again Setting a fixed default font height parameter doesn't make much sense when neither the target device nor its mapping mode nor its target resolution are known. This change reverts revision 1589449 of bug 124686 that has already been solved differently and restores the previous behaviour so that the default height of default constructed fonts is set to 12pt when the target device becomes known. Reviewed-by: Armin Le Grand <alg@apache.org> git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1596566 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
e89c3263 | 19-May-2014 |
Herbert Dürr |
#i124922# allow late setting of the font color for CoreText-layouted text git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1595858 13f79535-47bb-0310-9956-ffa450edef68 |
86e1cf34 | 29-Apr-2014 |
Pedro Giffuni |
Many spelling fixes: directories r* - z*. Attempt to clean up most but certainly not all the spelling mistakes that found home in OpenOffice through decades. We could probably blame
Many spelling fixes: directories r* - z*. Attempt to clean up most but certainly not all the spelling mistakes that found home in OpenOffice through decades. We could probably blame the international nature of the code but it 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
show more ...
|
Revision tags: AOO410 |
|
f52a0f15 | 23-Apr-2014 |
Armin Le Grand |
i124686 give empty constructed default font a default height git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1589449 13f79535-47bb-0310-9956-ffa450edef68 |
6e7df57e | 10-Apr-2014 |
Oliver-Rainer Wittmann |
124639: correct consideration of not provided header offset when checking certain read header data git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1586242 13f79535-47
124639: correct consideration of not provided header offset when checking certain read header data git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1586242 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|