diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 20:18:43 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 20:18:43 +0000 |
commit | 2c6d7e046dc4f5815c09ff9ab04b43d87c0a3eeb (patch) | |
tree | 1363bcd4727c90b420867e0c127b6e409b954d32 /svtools/source/java | |
parent | ebc73bbee28206c92ae0be641394b886b507a489 (diff) |
INTEGRATION: CWS warnings01 (1.3.62); FILE MERGED
2005/10/25 15:07:40 pl 1.3.62.1: #i55991# removed warnings for linux platform
Diffstat (limited to 'svtools/source/java')
-rw-r--r-- | svtools/source/java/javacontext.cxx | 16 |
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) |