ooo-build r14707 - in branches/opensuse-11-1: . patches/dev300



Author: thorstenb
Date: Wed Dec  3 09:19:38 2008
New Revision: 14707
URL: http://svn.gnome.org/viewvc/ooo-build?rev=14707&view=rev

Log:
    * patches/dev300/apply:
    * patches/dev300/svx-ppt-textstyle-fix.diff:
    Fix a regression from 2.4.1, where PPT import sometimes yields
    wrong text color and alignment. n#443127.



Added:
   branches/opensuse-11-1/patches/dev300/svx-ppt-textstyle-fix.diff
Modified:
   branches/opensuse-11-1/ChangeLog
   branches/opensuse-11-1/patches/dev300/apply

Modified: branches/opensuse-11-1/patches/dev300/apply
==============================================================================
--- branches/opensuse-11-1/patches/dev300/apply	(original)
+++ branches/opensuse-11-1/patches/dev300/apply	Wed Dec  3 09:19:38 2008
@@ -2635,6 +2635,7 @@
 cws-impress162-canvas.diff, i#94193, thorsten
 cws-impress162-slideshow.diff, i#94193, thorsten
 slideshow-blink-text-fix.diff, i#96047, thorsten
+svx-ppt-textstyle-fix.diff, n#443127, thorsten
 
 [ MinGW ]
 SectionOwner => jholesov

Added: branches/opensuse-11-1/patches/dev300/svx-ppt-textstyle-fix.diff
==============================================================================
--- (empty file)
+++ branches/opensuse-11-1/patches/dev300/svx-ppt-textstyle-fix.diff	Wed Dec  3 09:19:38 2008
@@ -0,0 +1,26 @@
+--- svx/source/svdraw/svdfppt.cxx~	2008-12-03 00:43:00.000000000 +0100
++++ svx/source/svdraw/svdfppt.cxx	2008-12-03 09:24:43.000000000 +0100
+@@ -5245,11 +5245,6 @@
+ 					rIn >> aSet.mnFontHeight;
+ 					aSet.mnAttrSet |= 1 << PPT_CharAttr_FontHeight;
+ 				}
+-				if ( nMask & 0x80000 )	// cfPosition
+-				{
+-					rIn >> aSet.mnEscapement;
+-					aSet.mnAttrSet |= 1 << PPT_CharAttr_Escapement;
+-				}
+ 				if ( nMask & 0x40000 )	// cfColor
+ 				{
+ 					sal_uInt32 nVal;
+@@ -5259,6 +5254,11 @@
+ 					aSet.mnColor = nVal;
+ 					aSet.mnAttrSet |= 1 << PPT_CharAttr_FontColor;
+ 				}
++				if ( nMask & 0x80000 )	// cfPosition
++				{
++					rIn >> aSet.mnEscapement;
++					aSet.mnAttrSet |= 1 << PPT_CharAttr_Escapement;
++				}
+ 				if ( nExtParaPos )
+ 				{
+ 					sal_uInt32 nExtBuInd = nMask & 0x3c00;



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]