]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/taskbar.h
prevent crash if panel/kicker is killed, bug 1872724
[wxWidgets.git] / interface / taskbar.h
index 7d1e24134095f5b49f6b6535feadec2edce5c1c4..9eb2faaefb2e1331b15f9275d187bbf98b2c59b4 100644 (file)
@@ -1,6 +1,6 @@
 /////////////////////////////////////////////////////////////////////////////
 // Name:        taskbar.h
-// Purpose:     documentation for wxTaskBarIcon class
+// Purpose:     interface of wxTaskBarIcon
 // Author:      wxWidgets team
 // RCS-ID:      $Id$
 // Licence:     wxWindows license
@@ -9,10 +9,10 @@
 /**
     @class wxTaskBarIcon
     @wxheader{taskbar.h}
-    
+
     This class represents a taskbar icon. A taskbar icon is an icon that appears in
     the 'system tray' and responds to mouse clicks, optionally with a tooltip above it to help provide information.
-    
+
     @library{wxadv}
     @category{FIXME}
 */
@@ -33,7 +33,6 @@ public:
         This method is called by the library when the user requests popup menu
         (on Windows and Unix platforms, this is when the user right-clicks the icon).
         Override this function in order to provide popup menu associated with the icon.
-        
         If CreatePopupMenu returns @NULL (this happens by default),
         no menu is shown, otherwise the menu is
         displayed and then deleted by the library as soon as the user dismisses it.
@@ -57,7 +56,7 @@ public:
     /**
         Returns @true if the object initialized successfully.
     */
-#define bool IsOk()     /* implementation is private */
+    bool IsOk();
 
     /**
         Pops up a menu at the current mouse position. The events can be handled by
@@ -75,3 +74,4 @@ public:
     */
     bool SetIcon(const wxIcon& icon, const wxString& tooltip);
 };
+