]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/nplugin/samples/simple/simple.cpp
New module definition file to keep .dll build compilable.
[wxWidgets.git] / utils / nplugin / samples / simple / simple.cpp
index 137e7b0585e50d0780ab45b80fecb42156500f51..4e4a83f5938ad5d851fcb2e93b5dfe58065cea80 100644 (file)
@@ -32,7 +32,7 @@
 // Define a new application type
 class MyApp: public wxPluginApp
 { public:
 // Define a new application type
 class MyApp: public wxPluginApp
 { public:
-    virtual wxFrame *OnInit(void);
+    virtual bool OnInit(void);
     virtual wxPluginFrame* OnNewInstance(const wxPluginData& data);
 };
 
     virtual wxPluginFrame* OnNewInstance(const wxPluginData& data);
 };
 
@@ -70,9 +70,9 @@ IMPLEMENT_APP(MyApp)
 
 // No app initialisation necessary, and for a plugin there is no
 // top frame.
 
 // No app initialisation necessary, and for a plugin there is no
 // top frame.
-wxFrame *MyApp::OnInit(void)
+bool MyApp::OnInit(void)
 {
 {
-    return NULL;
+    return TRUE;
 }
 
 // Called whenever a new plugin instance is called. We could check
 }
 
 // Called whenever a new plugin instance is called. We could check