Commit e852a093 authored by Gildas Bazin's avatar Gildas Bazin

* modules/gui/wxwindows/playlist.cpp: unicode fix.
parent c150ca77
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* playlist.cpp : wxWindows plugin for vlc * playlist.cpp : wxWindows plugin for vlc
***************************************************************************** *****************************************************************************
* Copyright (C) 2000-2001, 2003 VideoLAN * Copyright (C) 2000-2001, 2003 VideoLAN
* $Id: playlist.cpp,v 1.29 2003/12/03 21:58:42 sigmunau Exp $ * $Id: playlist.cpp,v 1.30 2003/12/04 18:26:53 gbazin Exp $
* *
* Authors: Olivier Teulire <ipkiss@via.ecp.fr> * Authors: Olivier Teulire <ipkiss@via.ecp.fr>
* *
...@@ -409,7 +409,7 @@ void Playlist::Rebuild() ...@@ -409,7 +409,7 @@ void Playlist::Rebuild()
{ {
memcpy( psz_duration ,"-:--:--", sizeof("-:--:--")); memcpy( psz_duration ,"-:--:--", sizeof("-:--:--"));
} }
listview->SetItem( i, 3, psz_duration ); listview->SetItem( i, 3, wxU(psz_duration) );
} }
} }
......
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