]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/nplugin/src/npapp.cpp
fix wxExecute() compilation in ANSI build
[wxWidgets.git] / utils / nplugin / src / npapp.cpp
index e9c43029c321bc812fb37b72099d9f37b5e26032..a2499e1cf8b3658c011d5ed949300524c7e46330 100644 (file)
@@ -103,8 +103,7 @@ NPError   wxPluginApp::NPP_Destroy(NPP instance, NPSavedData** save)
     wxPluginFrame *frame = FindFrame(instance);
     if ( frame )
     {
-        frame->OnClose();
-        delete frame;
+        frame->Close();
     }
     return NPERR_NO_ERROR;
 }
@@ -121,6 +120,8 @@ jref      wxPluginApp::NPP_GetJavaClass(void)
 }
 */
 
+// This can't work now because we don't have a global app until wxEntry is called.
+// We'll put the wxEntry call in npshell.cpp instead.
 NPError   wxPluginApp::NPP_Initialize(void)
 {
     static int init = FALSE;
@@ -239,7 +240,7 @@ NPError      wxPluginApp::NPP_SetWindow(NPP instance, NPWindow* window)
 
 void      wxPluginApp::NPP_Shutdown(void)
 {
-    // Clean up wxWindows
+    // Clean up wxWidgets
     CleanUp();
 }