]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/nplugin/samples/simple/simple.cpp
SetTextColor --> SetTextColour, to be consistent with the rest of the lib
[wxWidgets.git] / utils / nplugin / samples / simple / simple.cpp
index 137e7b0585e50d0780ab45b80fecb42156500f51..b85028238623e004a44e8ec85a111573df2481ee 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * File:       simple.cpp
 /*
  * File:       simple.cpp
- * Purpose:    Minimal wxWindows plugin
+ * Purpose:    Minimal wxWidgets plugin
  * Author:     Julian Smart
  * Created:    1997
  * Updated:    
  * Author:     Julian Smart
  * Created:    1997
  * Updated:    
@@ -9,11 +9,6 @@
 
 /* static const char sccsid[] = "%W% %G%"; */
 
 
 /* static const char sccsid[] = "%W% %G%"; */
 
-#ifdef __GNUG__
-#pragma implementation
-#pragma interface
-#endif
-
 #include "wx/wxprec.h"
 
 #ifdef __BORLANDC__
 #include "wx/wxprec.h"
 
 #ifdef __BORLANDC__
@@ -32,7 +27,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 +65,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