summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorAndreas Schlüns <as@openoffice.org>2001-02-15 13:14:16 +0000
committerAndreas Schlüns <as@openoffice.org>2001-02-15 13:14:16 +0000
commita3a0738d06245faf78772a4c60b3c60bf5ffe036 (patch)
treea6fa532eaea7ec0a5491e4c41ba5ee56bd170ef4 /framework
parentfb59c49f875805fb56f877af27386305567651df (diff)
#83884# add ctor/dtor to tIMPLExtractedArguments-struct ...
Diffstat (limited to 'framework')
-rw-r--r--framework/inc/helper/opluginframedispatcher.hxx30
1 files changed, 28 insertions, 2 deletions
diff --git a/framework/inc/helper/opluginframedispatcher.hxx b/framework/inc/helper/opluginframedispatcher.hxx
index a95ddc76c71b..12173a0fb361 100644
--- a/framework/inc/helper/opluginframedispatcher.hxx
+++ b/framework/inc/helper/opluginframedispatcher.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: opluginframedispatcher.hxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: mba $ $Date: 2001-02-02 14:08:21 $
+ * last change: $Author: as $ $Date: 2001-02-15 14:14:16 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -183,6 +183,32 @@ struct tIMPLExtractedArguments
REFERENCE< XINPUTSTREAM > xPostDataStream ; // Value of extracted data stream for posting
sal_Int32 nValidMask ; // state of extracted arguments
+
+ /*ATTENTION
+
+ Bug: #83884#
+ If no copy-ctor exist - we crash under linux !??
+ Why?? ... I HAVE ABSOLUT NO IDEA!
+ May be its a compiler bug ... or a problem of stack- or memory- handling ...
+ */
+
+ tIMPLExtractedArguments()
+ {
+ sReferrer = OUSTRING() ;
+ xPostDataStream = REFERENCE< XINPUTSTREAM >() ;
+ nValidMask = 0 ;
+ }
+
+ tIMPLExtractedArguments( const tIMPLExtractedArguments& rCopy )
+ : sReferrer ( rCopy.sReferrer )
+ , xPostDataStream ( rCopy.xPostDataStream )
+ , nValidMask ( rCopy.nValidMask )
+ {
+ }
+
+ ~tIMPLExtractedArguments()
+ {
+ }
};
/*-************************************************************************************************************//**