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



Author: thorstenb
Date: Mon Mar 31 11:13:52 2008
New Revision: 12061
URL: http://svn.gnome.org/viewvc/ooo-build?rev=12061&view=rev

Log:
	* patches/src680/vcl-virdev-missing-initialisation.diff: thanks to
	jseward, adds missing ctor initialization of an enum
	* patches/src680/apply: added fix for everybody



Added:
   trunk/patches/src680/vcl-virdev-missing-initialisation.diff
Modified:
   trunk/ChangeLog
   trunk/patches/src680/apply

Modified: trunk/patches/src680/apply
==============================================================================
--- trunk/patches/src680/apply	(original)
+++ trunk/patches/src680/apply	Mon Mar 31 11:13:52 2008
@@ -457,6 +457,9 @@
 # init all members in svx's line geometry creator
 svx-missing-initialization.diff, i#86163, thorsten
 
+# init all members in VirDev's ctor
+vcl-virdev-missing-initialisation.diff, thorsten
+
 # fix import of MSO Userform & Frame ( presence of scroll-top & scroll-left )
 # screws things up
 userform-scrollleftandtop.diff, i#87007, noelpwer

Added: trunk/patches/src680/vcl-virdev-missing-initialisation.diff
==============================================================================
--- (empty file)
+++ trunk/patches/src680/vcl-virdev-missing-initialisation.diff	Mon Mar 31 11:13:52 2008
@@ -0,0 +1,12 @@
+--- vcl/source/gdi/virdev.cxx	25 Oct 2007 16:04:52 -0000	1.31
++++ vcl/source/gdi/virdev.cxx	31 Mar 2008 09:54:45 -0000
+@@ -191,7 +191,8 @@ VirtualDevice::VirtualDevice( const Outp
+ // -----------------------------------------------------------------------
+ 
+ VirtualDevice::VirtualDevice( const OutputDevice& rCompDev, USHORT nBitCount, USHORT nAlphaBitCount )
+-	: mpVirDev( NULL )
++	: mpVirDev( NULL ),
++    meRefDevMode( REFDEV_NONE )
+ {
+ 	DBG_TRACE1( "VirtualDevice::VirtualDevice( %hu )", nBitCount );
+ 



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