| d448e1e6 | 05-Jul-2026 |
Arrigo Marchiori <ardovm@yahoo.it> |
Add missing include directives
They are required under Linux
(cherry picked from commit 88cf7e972200271fb6f6b7607c004d42d3587caa) |
| 8fad7391 | 03-Aug-2026 |
Jim Jagielski <jimjag@gmail.com> |
Improve macOS/arm64 build linting a full run on Mac Silicon
(cherry picked from commit c8bb992227b037a7321171d39b9b1b57b3461349) |
| 9563caa3 | 06-Aug-2026 |
Jim Jagielski <jimjag@gmail.com> |
vcl: fix CPUNAME token for Win64 entrypoint (X86-64 -> X86_64)
(cherry picked from commit ca2ed8eefec7baf47e45e3832406f2155e3c9b43) |
| 51105729 | 02-Jan-2025 |
Damjan Jovanovic <damjan@apache.org> |
Use the right entrypoint name for X86-64.
Patch by: me
(cherry picked from commit 25912db7455cd3d29b7bc29e06765cc84aed18c9) |
| 6aa83eaa | 02-Jan-2025 |
Damjan Jovanovic <damjan@apache.org> |
wParam is already a UINT_PTR, an integer type, so no need to cast it.
Patch by: me
(cherry picked from commit 1e5d8e72b5147bf84598caafc702eb279f3a8b41) |
| a1206e94 | 21-Jul-2026 |
Peter Kovacs <petko@apache.org> |
vcl/basic/sfx2/unixODBC: Win64 (x64) source fixes
Source-level fixes needed to compile/link these modules for Windows x86-64 (VS2008 x64). Each is arch-neutral or arch-guarded, so the x86 build is
vcl/basic/sfx2/unixODBC: Win64 (x64) source fixes
Source-level fixes needed to compile/link these modules for Windows x86-64 (VS2008 x64). Each is arch-neutral or arch-guarded, so the x86 build is unchanged; isolated here so they can be cherry-picked onto the dmake windows-amd64 branch / upstream.
- vcl/inc/win/wincomp.hxx: the pointer/handle class- and window-long indices GCL_HCURSOR/GCL_HICON/GCL_HBRBACKGROUND and GWL_HINSTANCE do not exist on Win64; use GCLP_*/GWLP_* with SetClassLongPtr/GetClassLongPtr/ GetWindowLongPtr and (LONG_PTR) casts (compile on x86 too). - vcl/win/source/window/salframe.cxx: PtrToInt(wParam) misused on the integer IME request code (WPARAM is 64-bit on x64) -> static_cast<int>. - vcl/win/source/gdi/salgdi.cxx: ImplPreparePolyDraw took const sal_uLong* while the drawPolyPolygon* callers pass const sal_uInt32* (distinct pointer types on x64) -> sal_uInt32*. - vcl/source/window/scrwnd.cxx: Max(sal_uIntPtr, 1UL) ambiguous on x64 (sal_uIntPtr is 64-bit, 1UL is unsigned long) -> Max(..., sal_uIntPtr(1UL)). - basic/source/runtime/dllmgr.cxx: the DllMgr_call32/callFp trampolines (wnt.asm) are x86 stdcall only; guard #if defined WNT -> #if defined(WNT) && !defined(_WIN64) so x64 uses the existing not-implemented stub (Basic Declare'd DLL calls unsupported on x64 until an x64 trampoline is written). - sfx2/source/bastyp/progress.cxx: extern Get10ThSec declared sal_uIntPtr but the definition returns sal_uInt32; these coincide on x86 but diverge on x64 (link error) -> declare sal_uInt32. - unixODBC/inc/sqltypes.h: the _WIN64 branch uses INT64/UINT64 for SQLLEN/SQLULEN without pulling them in -> #include <basetsd.h> (arch-guarded).
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> (cherry picked from commit ca1383cbf9353b4189783687c37e993025edf764) (cherry picked from commit a82fa8aef582f462d3f5518690eb9c6c33e5e8d0) (cherry picked from commit 30f18d3fb8fe7eacd8ee5f353bc7c60bfbf18ac5)
show more ...
|
| d24f51a2 | 02-Jan-2025 |
Damjan Jovanovic <damjan@apache.org> |
Add "version" as a library on Windows, and link to it so we can find functions like VerQueryValueW() on Win64.
Patch by: me
(cherry picked from commit 29ca9883b9ac0322aa31cde268e099f436837510) |
| c902fb22 | 02-Jan-2025 |
Damjan Jovanovic <damjan@apache.org> |
In ImplPreparePolyDraw(), nCurrPoints and nCurrPoint should be sal_uInt32, just like pPoints points to, which they are assigned from or related to. Commit 30f18d3fb8fe7eacd8ee5f353bc7c60bfbf18ac5 did
In ImplPreparePolyDraw(), nCurrPoints and nCurrPoint should be sal_uInt32, just like pPoints points to, which they are assigned from or related to. Commit 30f18d3fb8fe7eacd8ee5f353bc7c60bfbf18ac5 didn't fix all the uses of the pointer size change it made.
Patch by: me
(cherry picked from commit 48f8cc8f699b12f766e669922446071e6902869c)
show more ...
|
| 0c620f18 | 09-Mar-2022 |
mseidel <mseidel@apache.org> |
Revert changes to menu button
(cherry picked from commit 323a7b1d0184c1f13b360b02635f65e11294182c) |
| f4e8f246 | 06-Feb-2019 |
Matthias Seidel <mseidel@apache.org> |
Converted mouse pointer from indexed color to RGB
git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1853094 13f79535-47bb-0310-9956-ffa450edef68 (cherry picked from commit a2457d38d63184
Converted mouse pointer from indexed color to RGB
git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1853094 13f79535-47bb-0310-9956-ffa450edef68 (cherry picked from commit a2457d38d63184afaca54104eb4c7d57ff1ef5f0)
show more ...
|
| f56c8fd5 | 05-Feb-2019 |
Matthias Seidel <mseidel@apache.org> |
Converted mouse pointer from grayscale to RGB
git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1853010 13f79535-47bb-0310-9956-ffa450edef68 (cherry picked from commit b7cc733f323e5cd310
Converted mouse pointer from grayscale to RGB
git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1853010 13f79535-47bb-0310-9956-ffa450edef68 (cherry picked from commit b7cc733f323e5cd310b0a98b6294e23d78ceaacf)
show more ...
|
| af89ef61 | 07-Mar-2022 |
mseidel <mseidel@apache.org> |
Draw rectangle around menu button in toolbar for better visibility on e.g. Linux)
(cherry picked from commit ece403fc08af8500f61e7046a79182a00b9e270f) |
| b4fbd80c | 05-Jun-2026 |
Jim Jagielski <jimjag@gmail.com> |
Fix codespell-flagged typos to align with trunk
Ran codespell with the backported ignore-words list and applied its corrections (--write-changes), fixing 52 spelling errors across 44 files. All are
Fix codespell-flagged typos to align with trunk
Ran codespell with the backported ignore-words list and applied its corrections (--write-changes), fixing 52 spelling errors across 44 files. All are in comments, strings, and log messages (e.g. unknwon -> unknown, shuting -> shutting, Retrives -> Retrieves); no code identifiers were touched. Each typo was verified absent from trunk beforehand, so these fixes reduce divergence rather than add it.
Phase 1 backport (A_FORMAT + B_CI_DOCS), codespell step.
show more ...
|
| 8c14ed50 | 05-Jun-2026 |
Jim Jagielski <jimjag@gmail.com> |
Apply pre-commit hooks to align whitespace formatting with trunk
Ran 'pre-commit run --all-files' using the config backported in the previous commit. The auto-fixing hooks (trailing-whitespace, end-
Apply pre-commit hooks to align whitespace formatting with trunk
Ran 'pre-commit run --all-files' using the config backported in the previous commit. The auto-fixing hooks (trailing-whitespace, end-of-file-fixer, mixed-line-ending, insert-license) normalized 115 files. Verified the changes are whitespace/EOL/EOF-only plus Apache license-header insertion on README files; no source content changed (confirmed via 'git diff --ignore-all-space').
This replaces replaying ~350 historical formatting commits (which conflicted with AOO42X's own independent whitespace passes) with a single deterministic reformat that matches trunk's tooling.
Phase 1 backport (A_FORMAT + B_CI_DOCS), reformat step.
show more ...
|
| f3bbfcf7 | 10-Mar-2026 |
John Bampton <jbampton@users.noreply.github.com> |
pre-commit auto whitespace clean up for props files (#475)
Enforced 3 hooks for props files:
- end-of-file-fixer - mixed-line-ending - trailing-whitespace
(cherry picked from commit 403062acacea59
pre-commit auto whitespace clean up for props files (#475)
Enforced 3 hooks for props files:
- end-of-file-fixer - mixed-line-ending - trailing-whitespace
(cherry picked from commit 403062acacea599afa9388c32fa8bf59653f155c)
show more ...
|
| 44b6a127 | 03-Mar-2026 |
mseidel <mseidel@apache.org> |
Cleanup
(cherry picked from commit 527198e9106bdcc46565a309bc94ab031dcdd2a2) |
| 33fb253a | 17-Feb-2026 |
mseidel <mseidel@apache.org> |
Use 'zeros' instead of 'zeroes', at least in UI
(cherry picked from commit 152197ddedbab28a70dae9e64f6a5eb3f11bc68d) |
| 8754598d | 17-Feb-2026 |
mseidel <mseidel@apache.org> |
Cleanup
(cherry picked from commit d6af8f9e10003c07768fbd3f77570ede3f562d2c) |
| 86084ed9 | 12-Feb-2026 |
mseidel <mseidel@apache.org> |
Code cleanup
(cherry picked from commit 1ce07f25dfc815f42a7f16b3ee2e0bd0fc9b6c64) |
| 909304f4 | 12-Feb-2026 |
mseidel <mseidel@apache.org> |
Quick hack to get rid of the embossed look in tabbar, cleanup
(cherry picked from commit d5e8c6bf9be44690bd4016967c75f0f611324980) |
| 41f7f25e | 01-Feb-2026 |
mseidel <mseidel@apache.org> |
Cleanup
(cherry picked from commit bb62c5cd6d2c386e4575c10b889ffeeecd287de8) |
| 02261f70 | 24-Jan-2026 |
John Bampton <jbampton@users.noreply.github.com> |
misc: fix spelling (#461)
* misc: fix spelling
* Regenerate ignored words list codespell.txt
(cherry picked from commit 7aa897337248d2867d340fb1c741df9a1679b105) |
| c20c941f | 23-Jan-2026 |
John Bampton <jbampton@users.noreply.github.com> |
misc: fix more typos (#460)
* misc: fix more typos
* Regenerate ignored words list codespell.txt
(cherry picked from commit c297d334b1afde2918c7ae8e6f9d6dfd1a69a5ec) |
| 46e1ba80 | 22-Jan-2026 |
John Bampton <jbampton@users.noreply.github.com> |
misc: fix spelling (#459)
* misc: fix spelling
* Regenerate ignored words list codespell.txt
(cherry picked from commit 6ed76c64685f53e00cfb3369f502ea393be061e2) |
| 7663d70c | 17-Jan-2026 |
Matthias Seidel <mseidel@apache.org> |
Update cursors for macOS (#457)
* Update cursors for macOS
Update some cursors, remove some icons.
* Additional changes
* Additional changes
* Updated cursors
* Update rotate cursor
* Update r
Update cursors for macOS (#457)
* Update cursors for macOS
Update some cursors, remove some icons.
* Additional changes
* Additional changes
* Updated cursors
* Update rotate cursor
* Update rotate cursor (SVG)
(cherry picked from commit 2aead17ecbb476538fedac1fad1f29083aefe1ab)
show more ...
|