[Libreoffice-commits] .: jvmfwk/source

Tor Lillqvist tml at kemper.freedesktop.org
Mon Oct 3 05:17:51 PDT 2011


 jvmfwk/source/framework.cxx |    5 +++++
 1 file changed, 5 insertions(+)

New commits:
commit f20ffbd845feda793e2bc31789fb8b98fe5a4886
Author: Tor Lillqvist <tlillqvist at suse.com>
Date:   Mon Oct 3 15:11:41 2011 +0300

    WaE: unreferenced formal parameters in the !SOLAR_JAVA case

diff --git a/jvmfwk/source/framework.cxx b/jvmfwk/source/framework.cxx
index 9cf2c49..f6c3141 100644
--- a/jvmfwk/source/framework.cxx
+++ b/jvmfwk/source/framework.cxx
@@ -249,6 +249,11 @@ javaFrameworkError SAL_CALL jfw_startVM(JavaVMOption *arOptions, sal_Int32 cOpti
                                  JavaVM **ppVM, JNIEnv **ppEnv)
 {
 #ifndef SOLAR_JAVA
+    (void) arOptions;
+    (void) cOptions;
+    (void) ppVM;
+    (void) ppEnv;
+
     return JFW_E_ERROR;
 #else
     javaFrameworkError errcode = JFW_E_NONE;


More information about the Libreoffice-commits mailing list