X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e8482f24cfc00645607f8526fde38d39e0dcaa63..16c587ca765d00a17eb4fe83f6d94901a08801a4:/contrib/src/mmedia/vidbase.cpp diff --git a/contrib/src/mmedia/vidbase.cpp b/contrib/src/mmedia/vidbase.cpp index 1cd5a0632c..a0fc70cb1e 100644 --- a/contrib/src/mmedia/vidbase.cpp +++ b/contrib/src/mmedia/vidbase.cpp @@ -11,11 +11,12 @@ #pragma implementation "vidbase.h" #endif -#include +#include "wx/wxprec.h" #ifndef WX_PRECOMP #include #include +#include #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; } @@ -61,7 +62,7 @@ void wxVideoBaseDriver::DetachOutput() wxFrame *wxVideoCreateFrame(wxVideoBaseDriver *vid_drv) { - wxFrame *frame = new wxFrame(NULL, -1, "Video Output", wxDefaultPosition, wxSize(100, 100)); + 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)); frame->Layout();