]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/mediaplayer/mediaplayer.cpp
Add forcelnk.h and version.rc to distribution tars and zips
[wxWidgets.git] / samples / mediaplayer / mediaplayer.cpp
index ee3ab3cbdc36eb3cb308236c1aab24fb43173310..c7128dcdf07652d4e15d946ad51a8b45c9e9ee6b 100644 (file)
@@ -415,7 +415,7 @@ MyFrame::MyFrame(const wxString& title)
     //
     //  The fourth is an optional userdata param -
     //  this is of historical relevance only and is
     //
     //  The fourth is an optional userdata param -
     //  this is of historical relevance only and is
-    //  there only for backwards compatability.
+    //  there only for backwards compatibility.
     //
     //  The fifth is the context in which to call the
     //  handler - by default (this param is optional)
     //
     //  The fifth is the context in which to call the
     //  handler - by default (this param is optional)
@@ -870,7 +870,12 @@ MyNotebookPage::MyNotebookPage(wxNotebook* theBook) :
     //
     //  Create our media control
     //
     //
     //  Create our media control
     //
-    m_mediactrl = new wxMediaCtrl(this, wxID_MEDIACTRL);
+    m_mediactrl = new wxMediaCtrl();
+    
+    //  Make sure creation was successful
+    bool bOK = m_mediactrl->Create(this, wxID_MEDIACTRL);
+    wxASSERT_MSG(bOK, wxT("Could not create media control!"));
+    
     vertsizer->Add(m_mediactrl, 0, wxALIGN_CENTER_HORIZONTAL|wxALL, 5);
 
     //
     vertsizer->Add(m_mediactrl, 0, wxALIGN_CENTER_HORIZONTAL|wxALL, 5);
 
     //