summaryrefslogtreecommitdiff
path: root/bridges/source/jni_uno
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2006-08-01 10:48:28 +0000
committerIvo Hinkelmann <ihi@openoffice.org>2006-08-01 10:48:28 +0000
commit335ec52a6ff5dfc3621679075ccff5f06a9162fc (patch)
treee16a811a71e7569ab852d93c4e747b07bbff0da0 /bridges/source/jni_uno
parent8a46f9b40c95f4ba0009ea5a2789a9d5751e6fcc (diff)
INTEGRATION: CWS pj55 (1.8.24); FILE MERGED
2006/07/15 10:03:25 pjanik 1.8.24.1: #i67342#: Prevent warning ("has not yet been assigned a value").
Diffstat (limited to 'bridges/source/jni_uno')
-rw-r--r--bridges/source/jni_uno/jni_helper.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/bridges/source/jni_uno/jni_helper.h b/bridges/source/jni_uno/jni_helper.h
index 6670ccefe..86f13e060 100644
--- a/bridges/source/jni_uno/jni_helper.h
+++ b/bridges/source/jni_uno/jni_helper.h
@@ -4,9 +4,9 @@
*
* $RCSfile: jni_helper.h,v $
*
- * $Revision: 1.8 $
+ * $Revision: 1.9 $
*
- * last change: $Author: hr $ $Date: 2006-04-19 13:43:46 $
+ * last change: $Author: ihi $ $Date: 2006-08-01 11:48:28 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -96,7 +96,7 @@ inline jclass find_class(
JNI_context const & jni, char const * class_name, bool inException = false )
{
// find_class may be called before the JNI_info is set:
- jclass c;
+ jclass c=0;
jmethodID m;
JNI_info const * info = jni.get_info();
if (info == 0) {