]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/palmos/msgdlg.h
Remove Palm OS port.
[wxWidgets.git] / include / wx / palmos / msgdlg.h
diff --git a/include/wx/palmos/msgdlg.h b/include/wx/palmos/msgdlg.h
deleted file mode 100644 (file)
index c38168c..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-/////////////////////////////////////////////////////////////////////////////
-// Name:        wx/palmos/msgdlg.h
-// Purpose:     wxMessageDialog class
-// Author:      William Osborne - minimal working wxPalmOS port
-// Modified by:
-// Created:     10/13/04
-// RCS-ID:      $Id$
-// Copyright:   (c) William Osborne
-// Licence:     wxWindows licence
-/////////////////////////////////////////////////////////////////////////////
-
-#ifndef _WX_MSGBOXDLG_H_
-#define _WX_MSGBOXDLG_H_
-
-class WXDLLIMPEXP_CORE wxMessageDialog : public wxMessageDialogBase
-{
-public:
-    wxMessageDialog(wxWindow *parent,
-                    const wxString& message,
-                    const wxString& caption = wxMessageBoxCaptionStr,
-                    long style = wxOK|wxCENTRE,
-                    const wxPoint& WXUNUSED(pos) = wxDefaultPosition)
-        : wxMessageDialogBase(parent, message, caption, style)
-    {
-    }
-
-    virtual int ShowModal(void);
-
-    DECLARE_DYNAMIC_CLASS(wxMessageDialog)
-    wxDECLARE_NO_COPY_CLASS(wxMessageDialog);
-};
-
-
-#endif
-    // _WX_MSGBOXDLG_H_