From: Václav Slavík Date: Sun, 17 Aug 2003 14:55:33 +0000 (+0000) Subject: Unicode compilation fixes X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/6f568182ffd45ac1aa4ae50516d0d1bf32167535?ds=inline Unicode compilation fixes git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22970 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/contrib/src/mmedia/vidxanm.cpp b/contrib/src/mmedia/vidxanm.cpp index b0d061854d..e2bb35a3b2 100644 --- a/contrib/src/mmedia/vidxanm.cpp +++ b/contrib/src/mmedia/vidxanm.cpp @@ -108,7 +108,7 @@ wxVideoXANIM::wxVideoXANIM() m_xanim_detector = new wxVideoXANIMProcess(this); m_xanim_started = FALSE; m_paused = FALSE; - m_filename = ""; + m_filename = wxEmptyString; m_remove_file = FALSE; } @@ -122,7 +122,7 @@ wxVideoXANIM::wxVideoXANIM(wxInputStream& str) m_size[0] = 0; m_size[1] = 0; - m_filename = wxGetTempFileName("vidxa"); + m_filename = wxGetTempFileName(_T("vidxa")); m_remove_file = TRUE; wxFileOutputStream fout(m_filename); @@ -381,7 +381,7 @@ bool wxVideoXANIM::CollectInfo() line[infoStream->LastRead()] = 0; - totalOutput += line; + totalOutput += wxString::FromAscii(line); } // This is good for everything ... :-) @@ -393,7 +393,7 @@ bool wxVideoXANIM::CollectInfo() m_movieCodec = totalOutput(0, position); totalOutput.Remove(0, position); - tokenizer.SetString(totalOutput, "\n\r"); + tokenizer.SetString(totalOutput, wxT("\n\r")); // the rest of the line wxString token = tokenizer.GetNextToken();