|
From: <br...@us...> - 2010-02-06 06:27:03
|
Revision: 4089
http://openvrml.svn.sourceforge.net/openvrml/?rev=4089&view=rev
Author: braden
Date: 2010-02-06 06:26:57 +0000 (Sat, 06 Feb 2010)
Log Message:
-----------
Remove Java-related function definitions. The signatures of these functions differ from XULRunner 1.9.1 to 1.9.2. We're not using them; so in the interest of working with both XULRunner versions, just delete them for now.
Modified Paths:
--------------
trunk/ChangeLog
trunk/src/mozilla-plugin/openvrml.cpp
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2010-02-06 06:19:27 UTC (rev 4088)
+++ trunk/ChangeLog 2010-02-06 06:26:57 UTC (rev 4089)
@@ -1,5 +1,17 @@
2010-02-06 Braden McDaniel <br...@en...>
+ Remove Java-related function definitions. The signatures of these
+ functions differ from XULRunner 1.9.1 to 1.9.2. We're not using
+ them; so in the interest of working with both XULRunner versions,
+ just delete them for now.
+
+ * src/mozilla-plugin/openvrml.cpp
+ (NPP_GetJavaClass()): Removed.
+ (NPN_GetJavaEnv()): Removed.
+ (NPN_GetJavaPeer(NPP)): Removed.
+
+2010-02-06 Braden McDaniel <br...@en...>
+
* src/mozilla-plugin/openvrml.cpp: Use NPBool instead of PRBool.
2010-02-06 Braden McDaniel <br...@en...>
Modified: trunk/src/mozilla-plugin/openvrml.cpp
===================================================================
--- trunk/src/mozilla-plugin/openvrml.cpp 2010-02-06 06:19:27 UTC (rev 4088)
+++ trunk/src/mozilla-plugin/openvrml.cpp 2010-02-06 06:26:57 UTC (rev 4089)
@@ -665,11 +665,6 @@
void * /* notifyData */)
{}
-jref NPP_GetJavaClass()
-{
- return 0;
-}
-
NPError NPP_GetValue(const NPP npp,
const NPPVariable variable,
void * const value)
@@ -819,16 +814,6 @@
mozillaFuncs.reloadplugins(reloadPages);
}
-JRIEnv * NPN_GetJavaEnv()
-{
- return static_cast<JRIEnv *>(mozillaFuncs.getJavaEnv());
-}
-
-jref NPN_GetJavaPeer(NPP instance)
-{
- return static_cast<jref>(mozillaFuncs.getJavaPeer(instance));
-}
-
NPError NPN_GetValue(NPP instance, NPNVariable variable, void * value)
{
return mozillaFuncs.getvalue(instance, variable, value);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|