Commit 7c20b517 authored by Gildas Bazin's avatar Gildas Bazin

* modules/gui/wxwindows/*: use the wxL2U macro when necessary.
parent cf8bbfcd
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* fileinfo.cpp : wxWindows plugin for vlc * fileinfo.cpp : wxWindows plugin for vlc
***************************************************************************** *****************************************************************************
* Copyright (C) 2000-2001,2003 VideoLAN * Copyright (C) 2000-2001,2003 VideoLAN
* $Id: fileinfo.cpp,v 1.21 2003/12/22 02:24:52 sam Exp $ * $Id: fileinfo.cpp,v 1.22 2003/12/27 14:36:30 gbazin Exp $
* *
* Authors: Sigmund Augdal <sigmunau@idi.ntnu.no> * Authors: Sigmund Augdal <sigmunau@idi.ntnu.no>
* *
...@@ -104,17 +104,17 @@ void FileInfo::UpdateFileInfo() ...@@ -104,17 +104,17 @@ void FileInfo::UpdateFileInfo()
* retrieved with the GetItemText() method, but it doesn't work on * retrieved with the GetItemText() method, but it doesn't work on
* Windows when the wxTR_HIDE_ROOT style is set. That's why we need to * Windows when the wxTR_HIDE_ROOT style is set. That's why we need to
* use the fileinfo_root_label variable... */ * use the fileinfo_root_label variable... */
fileinfo_root = fileinfo_tree->AddRoot( wxU(p_input->psz_name) ); fileinfo_root = fileinfo_tree->AddRoot( wxL2U(p_input->psz_name) );
fileinfo_root_label = wxU(p_input->psz_name); fileinfo_root_label = wxL2U(p_input->psz_name);
} }
else if( fileinfo_root_label == wxU(p_input->psz_name) ) else if( fileinfo_root_label == wxL2U(p_input->psz_name) )
{ {
return; return;
} }
/* We rebuild the tree from scratch */ /* We rebuild the tree from scratch */
fileinfo_tree->DeleteChildren( fileinfo_root ); fileinfo_tree->DeleteChildren( fileinfo_root );
fileinfo_root_label = wxU(p_input->psz_name); fileinfo_root_label = wxL2U(p_input->psz_name);
vlc_mutex_lock( &p_input->stream.stream_lock ); vlc_mutex_lock( &p_input->stream.stream_lock );
...@@ -123,12 +123,12 @@ void FileInfo::UpdateFileInfo() ...@@ -123,12 +123,12 @@ void FileInfo::UpdateFileInfo()
while( p_cat ) while( p_cat )
{ {
wxTreeItemId cat = fileinfo_tree->AppendItem( fileinfo_root, wxTreeItemId cat = fileinfo_tree->AppendItem( fileinfo_root,
wxU(p_cat->psz_name) ); wxL2U(p_cat->psz_name) );
input_info_t *p_info = p_cat->p_info; input_info_t *p_info = p_cat->p_info;
while( p_info ) while( p_info )
{ {
fileinfo_tree->AppendItem( cat, (wxString)wxU(p_info->psz_name) + fileinfo_tree->AppendItem( cat, (wxString)wxL2U(p_info->psz_name) +
wxT(": ") + wxU(p_info->psz_value) ); wxT(": ") + wxL2U(p_info->psz_value) );
p_info = p_info->p_next; p_info = p_info->p_next;
} }
p_cat = p_cat->p_next; p_cat = p_cat->p_next;
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* playlist.cpp : wxWindows plugin for vlc * playlist.cpp : wxWindows plugin for vlc
***************************************************************************** *****************************************************************************
* Copyright (C) 2000-2001 VideoLAN * Copyright (C) 2000-2001 VideoLAN
* $Id: messages.cpp,v 1.18 2003/12/22 02:24:52 sam Exp $ * $Id: messages.cpp,v 1.19 2003/12/27 14:36:30 gbazin Exp $
* *
* Authors: Olivier Teulire <ipkiss@via.ecp.fr> * Authors: Olivier Teulire <ipkiss@via.ecp.fr>
* *
...@@ -157,7 +157,7 @@ void Messages::UpdateLog() ...@@ -157,7 +157,7 @@ void Messages::UpdateLog()
/* Append all messages to log window */ /* Append all messages to log window */
textctrl->SetDefaultStyle( *dbg_attr ); textctrl->SetDefaultStyle( *dbg_attr );
(*textctrl) << wxU(p_sub->p_msg[i_start].psz_module); (*textctrl) << wxL2U(p_sub->p_msg[i_start].psz_module);
switch( p_sub->p_msg[i_start].i_type ) switch( p_sub->p_msg[i_start].i_type )
{ {
...@@ -180,7 +180,7 @@ void Messages::UpdateLog() ...@@ -180,7 +180,7 @@ void Messages::UpdateLog()
} }
/* Add message */ /* Add message */
(*textctrl) << wxU(p_sub->p_msg[i_start].psz_msg) << wxT("\n"); (*textctrl) << wxL2U(p_sub->p_msg[i_start].psz_msg) << wxT("\n");
} }
vlc_mutex_lock( p_sub->p_lock ); vlc_mutex_lock( p_sub->p_lock );
......
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