summaryrefslogtreecommitdiff
path: root/embedserv/source
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2006-10-06 09:38:54 +0000
committerKurt Zenker <kz@openoffice.org>2006-10-06 09:38:54 +0000
commit18ab7a30953b11bfec64f3d9b96bc13e1c2e7afb (patch)
treefb7369d332612fe06c0a208e8b453c3e34eed26c /embedserv/source
parent84604a2b6e3a4d64627c5f9a0a8406690e8eb31b (diff)
INTEGRATION: CWS fwk46 (1.14.6); FILE MERGED
2006/08/18 12:33:20 mav 1.14.6.1: #i64905# fix reentrance problem
Diffstat (limited to 'embedserv/source')
-rwxr-xr-xembedserv/source/inc/embeddoc.hxx23
1 files changed, 21 insertions, 2 deletions
diff --git a/embedserv/source/inc/embeddoc.hxx b/embedserv/source/inc/embeddoc.hxx
index 81cd9dcceea7..657fc2f81f42 100755
--- a/embedserv/source/inc/embeddoc.hxx
+++ b/embedserv/source/inc/embeddoc.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: embeddoc.hxx,v $
*
- * $Revision: 1.15 $
+ * $Revision: 1.16 $
*
- * last change: $Author: vg $ $Date: 2006-09-25 13:31:46 $
+ * last change: $Author: kz $ $Date: 2006-10-06 10:38:54 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -187,6 +187,25 @@ protected:
DWORD m_nAdviseNum;
::rtl::Reference< EmbeddedDocumentInstanceAccess_Impl > m_xOwnAccess;
+
+ sal_Bool m_bIsInVerbHandling;
+};
+
+class BooleanGuard_Impl
+{
+ sal_Bool& m_bValue;
+
+public:
+ BooleanGuard_Impl( sal_Bool& bValue )
+ : m_bValue( bValue )
+ {
+ m_bValue = sal_True;
+ }
+
+ ~BooleanGuard_Impl()
+ {
+ m_bValue = sal_False;
+ }
};
#endif //_EMBEDDOC_HXX_