]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/busyinfo.h
do not use @b when referencing to functions; use final () to enable doxygen autolink
[wxWidgets.git] / interface / wx / busyinfo.h
index 88c88810e32e3ac6084cf16e28bd2628b1abee05..439d90a574f0117d452e6433d2ab1bb37cbf8061 100644 (file)
@@ -8,7 +8,6 @@
 
 /**
     @class wxBusyInfo
-    @wxheader{busyinfo.h}
 
     This class makes it easy to tell your user that the program is temporarily busy.
     Just create a wxBusyInfo object on the stack, and within the current scope,
@@ -42,7 +41,7 @@
             DoACalculation();
 
             if ( !(i % 1000) )
-                wxTheApp-Yield();
+                wxTheApp->Yield();
         }
     @endcode