Commit df47e0c5 authored by Gildas Bazin's avatar Gildas Bazin

* modules/gui/wxwindows/playlist.cpp: unicode compilation fixes.
parent 7fb3b292
......@@ -2,7 +2,7 @@
* playlist.cpp : wxWindows plugin for vlc
*****************************************************************************
* Copyright (C) 2000-2004 VideoLAN
* $Id: playlist.cpp,v 1.37 2004/01/15 21:49:07 sigmunau Exp $
* $Id: playlist.cpp,v 1.38 2004/01/16 00:01:19 gbazin Exp $
*
* Authors: Olivier Teulire <ipkiss@via.ecp.fr>
*
......@@ -590,9 +590,9 @@ void Playlist::OnSave( wxCommandEvent& WXUNUSED(event) )
wxString filter = wxT("");
for( unsigned int i = 0; i < sizeof(formats)/sizeof(formats[0]); i++)
{
filter.Append( wxT(formats[i].psz_desc) );
filter.Append( wxU(formats[i].psz_desc) );
filter.Append( wxT("|") );
filter.Append( wxT(formats[i].psz_filter) );
filter.Append( wxU(formats[i].psz_filter) );
filter.Append( wxT("|") );
}
wxFileDialog dialog( this, wxU(_("Save playlist")),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment