Commit 76abefb3 authored by Gildas Bazin's avatar Gildas Bazin

* modules/gui/wxwidgets/preferences.cpp: unicode build fix (bugzilla #2117)....

* modules/gui/wxwidgets/preferences.cpp: unicode build fix (bugzilla #2117). Patch by Diego Petteno (flameeyes at gentoo).
parent 34a54df1
...@@ -336,7 +336,7 @@ PrefsTreeCtrl::PrefsTreeCtrl( wxWindow *_p_parent, intf_thread_t *_p_intf, ...@@ -336,7 +336,7 @@ PrefsTreeCtrl::PrefsTreeCtrl( wxWindow *_p_parent, intf_thread_t *_p_intf,
b_advanced = VLC_FALSE; b_advanced = VLC_FALSE;
root_item = AddRoot( wxT("") ); root_item = AddRoot( wxT("") );
wxASSERT_MSG(root_item.IsOk(), "Could not add root item"); wxASSERT_MSG(root_item.IsOk(), wxT("Could not add root item"));
wxImageList *p_images = new wxImageList( 16,16,TRUE ); wxImageList *p_images = new wxImageList( 16,16,TRUE );
p_images->Add( wxIcon( audio_xpm ) ); p_images->Add( wxIcon( audio_xpm ) );
......
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