]> git.saurik.com Git - wxWidgets.git/blobdiff - src/stubs/msgdlg.cpp
removed stubs and qt 'ports'
[wxWidgets.git] / src / stubs / msgdlg.cpp
diff --git a/src/stubs/msgdlg.cpp b/src/stubs/msgdlg.cpp
deleted file mode 100644 (file)
index 11831c3..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-/////////////////////////////////////////////////////////////////////////////
-// Name:        msgdlg.cpp
-// Purpose:     wxMessageDialog
-// Author:      AUTHOR
-// Modified by:
-// Created:     04/01/98
-// RCS-ID:      $$
-// Copyright:   (c) AUTHOR
-// Licence:    wxWindows licence
-/////////////////////////////////////////////////////////////////////////////
-
-#ifdef __GNUG__
-#pragma implementation "msgdlg.h"
-#endif
-
-#include "wx/stubs/msgdlg.h"
-
-IMPLEMENT_CLASS(wxMessageDialog, wxDialog)
-
-wxMessageDialog::wxMessageDialog(wxWindow *parent, const wxString& message, const wxString& caption,
-        long style, const wxPoint& pos)
-{
-    m_caption = caption;
-    m_message = message;
-    m_dialogStyle = style;
-    m_parent = parent;
-}
-
-int wxMessageDialog::ShowModal()
-{
-    // TODO
-    return wxID_CANCEL;
-}
-