|
From: CVS C. to T. <the...@li...> - 2012-02-25 10:15:20
|
Revision: 675
http://themis.svn.sourceforge.net/themis/?rev=675&view=rev
Author: mark_hellegers
Date: 2012-02-25 10:15:14 +0000 (Sat, 25 Feb 2012)
Log Message:
-----------
Fixed the layout of table rows, so they are displyed below each other again.
Modified Paths:
--------------
trunk/themis/modules/CSSRenderer/TableRowDisplayView.cpp
Modified: trunk/themis/modules/CSSRenderer/TableRowDisplayView.cpp
===================================================================
--- trunk/themis/modules/CSSRenderer/TableRowDisplayView.cpp 2012-02-23 22:39:42 UTC (rev 674)
+++ trunk/themis/modules/CSSRenderer/TableRowDisplayView.cpp 2012-02-25 10:15:14 UTC (rev 675)
@@ -145,10 +145,10 @@
// mRect.PrintToStream();
// Add any margins
- mEndPoint.Set(mEndPoint.x + mMarginRight, mEndPoint.y + mMarginBottom);
mRect.bottom = restRect.top + mMarginBottom;
mRect.right += mMarginRight;
+ mEndPoint.Set(mRect.right, mRect.bottom);
//mRect.right = restRect.right;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|