summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--svtools/source/java/javacontext.cxx16
1 files changed, 10 insertions, 6 deletions
diff --git a/svtools/source/java/javacontext.cxx b/svtools/source/java/javacontext.cxx
index f578279ec07f..9bc4f6e0c2b3 100644
--- a/svtools/source/java/javacontext.cxx
+++ b/svtools/source/java/javacontext.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: javacontext.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 16:11:24 $
+ * last change: $Author: hr $ $Date: 2006-06-19 21:18:43 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -59,19 +59,23 @@ namespace svt
JavaContext::JavaContext( const Reference< XCurrentContext > & ctx )
:
+ m_aRefCount(0),
m_xNextContext( ctx ),
- m_bShowErrorsOnce(false),
- m_aRefCount(0)
+ m_bShowErrorsOnce(false)
{
}
JavaContext::JavaContext( const Reference< XCurrentContext > & ctx,
bool bShowErrorsOnce)
- : m_xNextContext( ctx ), m_bShowErrorsOnce(bShowErrorsOnce),
- m_aRefCount(0)
+ : m_aRefCount(0),
+ m_xNextContext( ctx ),
+ m_bShowErrorsOnce(bShowErrorsOnce)
{
}
+JavaContext::~JavaContext()
+{
+}
Any SAL_CALL JavaContext::queryInterface(const Type& aType )
throw (RuntimeException)