]> git.saurik.com Git - wxWidgets.git/blobdiff - contrib/src/mmedia/vidbase.cpp
overseeing the obvious, there is already a perfect scroll call for HIView...
[wxWidgets.git] / contrib / src / mmedia / vidbase.cpp
index b3c8ac9195e946092204d7c9fcc482b903b49c7a..a0fc70cb1e13e3ee51ce21c0abcf2716beeb009e 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;
 }
@@ -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();