X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/456fef85bb254a89495a88eaadcdb36b1de61b5e..823c4e96f9656176562b5baf7d1b64a8a3dfb3d8:/include/wx/cocoa/dialog.h diff --git a/include/wx/cocoa/dialog.h b/include/wx/cocoa/dialog.h index e736b8f756..b4e0145e91 100644 --- a/include/wx/cocoa/dialog.h +++ b/include/wx/cocoa/dialog.h @@ -6,7 +6,7 @@ // Created: 2002/12/15 // RCS-ID: $Id: // Copyright: David Elliott -// Licence: wxWindows license +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #ifndef _WX_COCOA_DIALOG_H_ @@ -73,7 +73,7 @@ protected: // Cocoa specifics // ------------------------------------------------------------------------ protected: - virtual void Cocoa_close(void); + virtual void CocoaDelegate_windowWillClose(void); virtual bool Cocoa_canBecomeMainWindow(bool &canBecome) { canBecome = true; return true; } @@ -81,10 +81,11 @@ protected: // Implementation // ------------------------------------------------------------------------ public: - bool Show(bool show = true); + virtual bool Show(bool show = true); void SetModal(bool flag); - virtual bool IsModal() const; + virtual bool IsModal() const { return m_isModal; } + bool m_isModal; // For now, same as Show(TRUE) but returns return code virtual int ShowModal();