ooo-build r15393 - in branches/ooo-build-3-0-1: . patches/dev300
- From: kyoshida svn gnome org
- To: svn-commits-list gnome org
- Subject: ooo-build r15393 - in branches/ooo-build-3-0-1: . patches/dev300
- Date: Fri, 20 Feb 2009 21:08:44 +0000 (UTC)
Author: kyoshida
Date: Fri Feb 20 21:08:44 2009
New Revision: 15393
URL: http://svn.gnome.org/viewvc/ooo-build?rev=15393&view=rev
Log:
2009-02-20 Patrick Luby <pluby neooffice org>
* patches/dev300/sc-copy-on-merged-cells.diff: fixed an incorrect data
type to prevent infinite loop. (n#478309)
Modified:
branches/ooo-build-3-0-1/ChangeLog
branches/ooo-build-3-0-1/patches/dev300/sc-copy-on-merged-cells.diff
Modified: branches/ooo-build-3-0-1/patches/dev300/sc-copy-on-merged-cells.diff
==============================================================================
--- branches/ooo-build-3-0-1/patches/dev300/sc-copy-on-merged-cells.diff (original)
+++ branches/ooo-build-3-0-1/patches/dev300/sc-copy-on-merged-cells.diff Fri Feb 20 21:08:44 2009
@@ -25,7 +25,7 @@
+ ScRange destRange( nStartCol, nStartRow, nStartTab, nUndoEndCol, nUndoEndRow, nEndTab );
+ rDocFunc.UnmergeCells(destRange, bRecord, TRUE);
+ for (SCCOL i = nStartCol; i <= nUndoEndCol; i++)
-+ for (SCCOL j = nStartRow; j <= nUndoEndRow; j++)
++ for (SCROW j = nStartRow; j <= nUndoEndRow; j++)
+ {
+ ScRange rrRange (i, j, nEndTab);
+ pDoc->ExtendOverlapped(rrRange);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]