]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/module.h
don't call OnCloseDocument() from OnNewDocument(), this plainly doesn't make sense...
[wxWidgets.git] / interface / wx / module.h
index ec801b608e0e3e9cf8e9998c82a191f662db8b7f..4257e35be638c8493fd689e4518ab9963529be4a 100644 (file)
@@ -8,7 +8,6 @@
 
 /**
     @class wxModule
-    @wxheader{module.h}
 
     The module system is a very simple mechanism to allow applications (and parts
     of wxWidgets itself) to define initialization and cleanup functions that are
@@ -34,7 +33,7 @@
       {
       public:
           wxDDEModule() { }
-          virtual bool OnInit() { wxDDEInitialize(); return @true; };
+          virtual bool OnInit() { wxDDEInitialize(); return true; };
           virtual void OnExit() { wxDDECleanUp(); };
 
       private: