]> git.saurik.com Git - wxWidgets.git/blobdiff - contrib/src/mmedia/vidbase.cpp
Avoid warnings from mgl headers if possible.
[wxWidgets.git] / contrib / src / mmedia / vidbase.cpp
index b3c8ac9195e946092204d7c9fcc482b903b49c7a..a62c2a90cbc26c535f85d22b92eaf92e2929c872 100644 (file)
@@ -16,6 +16,7 @@
 #ifndef WX_PRECOMP
 #include <wx/stream.h>
 #include <wx/wfstream.h>
+#include <wx/intl.h>
 #endif
 
 #include "wx/mmedia/vidbase.h"
@@ -32,12 +33,12 @@ wxVideoBaseDriver::wxVideoBaseDriver()
   m_video_output = NULL;
 }
 
-wxVideoBaseDriver::wxVideoBaseDriver(wxInputStream& str)
+wxVideoBaseDriver::wxVideoBaseDriver(wxInputStream& WXUNUSED(str))
 {
   m_video_output = NULL;
 }
 
-wxVideoBaseDriver::wxVideoBaseDriver(const wxString& filename)
+wxVideoBaseDriver::wxVideoBaseDriver(const wxString& WXUNUSED(filename))
 {
   m_video_output = NULL;
 }
@@ -49,7 +50,7 @@ wxVideoBaseDriver::~wxVideoBaseDriver()
 bool wxVideoBaseDriver::AttachOutput(wxWindow& output)
 {
   m_video_output = &output;
-  return TRUE;
+  return true;
 }
 
 void wxVideoBaseDriver::DetachOutput()
@@ -61,11 +62,11 @@ void wxVideoBaseDriver::DetachOutput()
 
 wxFrame *wxVideoCreateFrame(wxVideoBaseDriver *vid_drv)
 {
-  wxFrame *frame = new wxFrame(NULL, -1, "Video Output", wxDefaultPosition, wxSize(100, 100));
-  wxWindow *vid_out = new wxWindow(frame, -1, wxPoint(0, 0), wxSize(300, 300));
+  wxFrame *frame = new wxFrame(NULL, wxID_ANY, _("Video Output"), wxDefaultPosition, wxSize(100, 100));
+  wxWindow *vid_out = new wxWindow(frame, wxID_ANY, wxPoint(0, 0), wxSize(300, 300));
 
   frame->Layout();
-  frame->Show(TRUE);
+  frame->Show(true);
 
   vid_drv->AttachOutput(*vid_out);
   vid_drv->Play();