]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/taskbar.cpp
Add virtual ~wxAnyScrollHelperBase() to fix compiler warning.
[wxWidgets.git] / src / msw / taskbar.cpp
index 6cd962b79cb8bdd18ccfe9954ce1d8ba7f729150..537db33bfd3d09f68d86ae73dcf5b17ef3747377 100644 (file)
@@ -5,7 +5,6 @@
 // Author:      Julian Smart
 // Modified by: Vaclav Slavik
 // Created:     24/3/98
-// RCS-ID:      $Id$
 // Copyright:   (c)
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////
@@ -110,8 +109,10 @@ static BOOL wxShellNotifyIcon(DWORD dwMessage, NOTIFYICONDATA *pData)
 // wxTaskBarIconWindow: helper window
 // ----------------------------------------------------------------------------
 
-// We need a HWND to create a taskbar icon, so create a special hidden window
-// just to be able to use its HWND.
+// NB: this class serves two purposes:
+//     1. win32 needs a HWND associated with taskbar icon, this provides it
+//     2. we need wxTopLevelWindow so that the app doesn't exit when
+//        last frame is closed but there still is a taskbar icon
 class wxTaskBarIconWindow : public wxFrame
 {
 public:
@@ -121,11 +122,6 @@ public:
     {
     }
 
-    // This implicitly created window shouldn't prevent the application from
-    // exiting if all its other windows are closed.
-    virtual bool ShouldPreventAppExit() const { return false; }
-
-protected:
     WXLRESULT MSWWindowProc(WXUINT msg,
                             WXWPARAM wParam, WXLPARAM lParam)
     {