]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/module.h
even more interface fixes
[wxWidgets.git] / interface / wx / module.h
index ec801b608e0e3e9cf8e9998c82a191f662db8b7f..1cd5717e16cd393ad6b98c7bfb06053bae903547 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:
@@ -87,7 +86,7 @@ public:
     /**
         Destructor.
     */
-    ~wxModule();
+    virtual ~wxModule();
 
     //@{
     /**