ooo-build r12084 - in trunk: . patches/src680



Author: thorstenb
Date: Wed Apr  2 11:05:04 2008
New Revision: 12084
URL: http://svn.gnome.org/viewvc/ooo-build?rev=12084&view=rev

Log:
	* patches/src680/svx-missing-initialization.diff: thanks to
	jseward, adding another missing initialization



Modified:
   trunk/ChangeLog
   trunk/patches/src680/svx-missing-initialization.diff

Modified: trunk/patches/src680/svx-missing-initialization.diff
==============================================================================
--- trunk/patches/src680/svx-missing-initialization.diff	(original)
+++ trunk/patches/src680/svx-missing-initialization.diff	Wed Apr  2 11:05:04 2008
@@ -1,3 +1,40 @@
+--- svx/inc/svx/svdfppt.hxx	10 May 2007 14:32:05 -0000	1.3
++++ svx/inc/svx/svdfppt.hxx	2 Apr 2008 08:48:35 -0000
+@@ -311,6 +311,7 @@ struct PptColorSchemeAtom
+ 
+ public:
+ 
++    PptColorSchemeAtom();
+     Color				GetColor( USHORT nNum ) const;
+ 
+     friend SvStream& operator>>(SvStream& rIn, PptColorSchemeAtom& rAtom);
+
+--- svx/source/svdraw/svdfppt.cxx	23 Jan 2008 14:49:02 -0000	1.154.182.2
++++ svx/source/svdraw/svdfppt.cxx	2 Apr 2008 08:49:28 -0000
+@@ -526,6 +526,11 @@ void PptNotesAtom::Clear()
+ 
+ ////////////////////////////////////////////////////////////////////////////////////////////////////
+ 
++PptColorSchemeAtom::PptColorSchemeAtom()
++{
++    rtl_zeroMemory(aData,sizeof(aData));
++}
++
+ Color PptColorSchemeAtom::GetColor( USHORT nNum ) const
+ {
+ 	Color aRetval;
+@@ -678,6 +683,10 @@ SvStream& operator>>( SvStream& rIn, Ppt
+ ////////////////////////////////////////////////////////////////////////////////////////////////////
+ 
+ PptSlidePersistEntry::PptSlidePersistEntry() :
++    aPersistAtom            (),
++    aSlideAtom              (),
++    aNotesAtom              (),
++    aColorScheme            (),
+     pStyleSheet				( NULL ),
+ 	pHeaderFooterEntry		( NULL ),
+ 	pSolverContainer		( NULL ),
+
 --- svx/source/inc/svdoimp.hxx	26 Nov 2007 14:51:11 -0000	1.11
 +++ svx/source/inc/svdoimp.hxx	28 Mar 2008 19:15:52 -0000
 @@ -258,7 +258,8 @@ public:
@@ -6,7 +43,7 @@
  		maAreaPolyPolygon(rPoPo),
 -		maLinePolyPolygon(rPoLi)
 +		maLinePolyPolygon(rPoLi),
-+        mbLineDraft(false)
++       mbLineDraft(false)
  	{
  	}
  



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