diff options
author | Rüdiger Timm <rt@openoffice.org> | 2006-12-01 13:48:37 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2006-12-01 13:48:37 +0000 |
commit | 246d0fb227248f7cacafca631fc62ffb872c7d10 (patch) | |
tree | b6d54b948f242049beef7f0a8d4b4a0c9d780edc | |
parent | e26382377400b8da88c2fa6626d0828819c7f8e8 (diff) |
INTEGRATION: CWS sb23 (1.5.20); FILE MERGED
2006/08/18 16:02:34 sb 1.5.20.2: RESYNC: (1.5-1.6); FILE MERGED
2005/03/23 14:21:45 sb 1.5.20.1: #88601# Support for current context in binary UNO URP bridge.
-rw-r--r-- | bridges/source/remote/urp/urp_property.hxx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/bridges/source/remote/urp/urp_property.hxx b/bridges/source/remote/urp/urp_property.hxx index 557dfbddeaf7..5f7db1f2ca5f 100644 --- a/bridges/source/remote/urp/urp_property.hxx +++ b/bridges/source/remote/urp/urp_property.hxx @@ -4,9 +4,9 @@ * * $RCSfile: urp_property.hxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: rt $ $Date: 2005-09-07 22:47:57 $ + * last change: $Author: rt $ $Date: 2006-12-01 14:48:37 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -64,6 +64,7 @@ namespace bridges_urp sal_Bool bClearCache; sal_Bool bNegotiate; sal_Bool bForceSynchronous; + sal_Bool bCurrentContext; inline Properties() : nTypeCacheSize( 256 ) @@ -79,6 +80,7 @@ namespace bridges_urp , bClearCache( sal_False ) , bNegotiate( sal_True ) , bForceSynchronous( sal_True ) + , bCurrentContext( sal_False ) {} inline Properties & SAL_CALL operator = ( const Properties &props ) @@ -97,6 +99,7 @@ namespace bridges_urp bClearCache = props.bClearCache; bNegotiate = props.bNegotiate; bForceSynchronous = props.bForceSynchronous; + bCurrentContext = props.bCurrentContext; return *this; } }; |