ooo-build r12419 - in trunk: . patches/dev300



Author: kyoshida
Date: Fri May  2 02:30:00 2008
New Revision: 12419
URL: http://svn.gnome.org/viewvc/ooo-build?rev=12419&view=rev

Log:
2008-05-01  Kohei Yoshida  <kyoshida novell com>

	* patches/dev300/basic-initialize-member.diff: initialize 
	bNeedIntrospection - a member variable of SbUnoObject - in the ctor 
	initializer.  Thanks to Julian Seward for the discovery.

	* patches/dev300/apply: apply the new patch.


Added:
   trunk/patches/dev300/basic-initialize-member.diff
Modified:
   trunk/ChangeLog
   trunk/patches/dev300/apply

Modified: trunk/patches/dev300/apply
==============================================================================
--- trunk/patches/dev300/apply	(original)
+++ trunk/patches/dev300/apply	Fri May  2 02:30:00 2008
@@ -447,6 +447,10 @@
 
 # vba types are not available, causes all sort strangeness
 vba-3-layer-missingtypes.diff, i#88739, noelpwer
+
+# init a bool member in SbUnoObject's ctor initializer.
+basic-initialize-member.diff, kohei
+
 [ RadioButtons ]
 # Add a GroupName property to RadioButtons so that RadioButtons don't need to
 # share the same name to be part of the same group.

Added: trunk/patches/dev300/basic-initialize-member.diff
==============================================================================
--- (empty file)
+++ trunk/patches/dev300/basic-initialize-member.diff	Fri May  2 02:30:00 2008
@@ -0,0 +1,16 @@
+diff --git a/basic/source/classes/sbunoobj.cxx b/basic/source/classes/sbunoobj.cxx
+index 539b023..b1485ab 100644
+--- basic/source/classes/sbunoobj.cxx
++++ basic/source/classes/sbunoobj.cxx
+@@ -2243,8 +2243,9 @@ void SbUnoObject::SFX_NOTIFY( SfxBroadcaster& rBC, const TypeId& rBCType,
+ Reference< XInvocation > createDynamicInvocationFor( const Any& aAny );
+ #endif
+ 
+-SbUnoObject::SbUnoObject( const String& aName_, const Any& aUnoObj_ )
+-	: SbxObject( aName_ )
++SbUnoObject::SbUnoObject( const String& aName_, const Any& aUnoObj_ ) :
++    SbxObject(aName_),
++    bNeedIntrospection(false)
+ {
+ 	static Reference< XIntrospection > xIntrospection;
+ 



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