]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/generic/progdlgg.h
added a couple of base classes
[wxWidgets.git] / include / wx / generic / progdlgg.h
index 4256feee73944ff1494313a9c3627efb98843ef1..dff9e2fc0626d8eb29963bf41c3a974f0064cd5c 100644 (file)
 #ifndef __PROGDLGH_G__
 #define __PROGDLGH_G__
 
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-#pragma interface "progdlgg.h"
-#endif
-
 #include "wx/defs.h"
 
 #if wxUSE_PROGRESSDLG
@@ -56,6 +52,8 @@ public:
        @returns true if ABORT button has not been pressed
    */
    virtual bool Update(int value, const wxString& newmsg = wxEmptyString, bool *skip = NULL);
+    // Must provide overload to avoid hiding it (and warnings about it)
+    virtual void Update() { wxDialog::Update(); }
 
    /* Can be called to continue after the cancel button has been pressed, but
        the program decided to continue the operation (e.g., user didn't
@@ -154,10 +152,6 @@ private:
     class WXDLLEXPORT wxWindowDisabler *m_winDisabler;
 
     DECLARE_EVENT_TABLE()
-private:
-    // Virtual function hiding supression
-    virtual void Update() { wxDialog::Update(); }
-
     DECLARE_NO_COPY_CLASS(wxProgressDialog)
 };