https://bugs.documentfoundation.org/show_bug.cgi?id=133629
Julien Nabet <[email protected]> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |[email protected]
--- Comment #2 from Julien Nabet <[email protected]> ---
Noel: thought you might be interested in this one.
I see several changes possible:
1)
Simply replace
for (SCCOL i=nStartCol; i<=nEndCol; i++)
->
for (SCCOL i=nStartCol; i<nEndCol; i++)
2) Like in ScTable::ApplyStyleArea
2741 // If we would like set all columns to specific style, then change only
default style for not existing columns <== It's the case here
2742 nEndCol = aCol.size() - 1;
2743 for (SCCOL i = nStartCol; i <= nEndCol; i++)
3)
nEndCol = ClampToAllocatedColumns(nEndCol);
4) other?
Any thoughts here?
--
You are receiving this mail because:
You are the assignee for the bug._______________________________________________
Libreoffice-bugs mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs