Commit c81509e4 authored by Olivier Teulière's avatar Olivier Teulière

* skins2/src/dialogs.cpp: more encoding fixes

parent f9e4bcb9
......@@ -41,7 +41,7 @@ void Dialogs::showChangeSkinCB( intf_dialog_args_t *pArg )
{
// Create a change skin command
CmdChangeSkin *pCmd =
new CmdChangeSkin( pIntf, pArg->psz_results[0] );
new CmdChangeSkin( pIntf, sFromLocale( pArg->psz_results[0] ) );
// Push the command in the asynchronous command queue
AsyncQueue *pQueue = AsyncQueue::instance( pIntf );
......@@ -65,7 +65,7 @@ void Dialogs::showPlaylistLoadCB( intf_dialog_args_t *pArg )
{
// Create a Playlist Load command
CmdPlaylistLoad *pCmd =
new CmdPlaylistLoad( pIntf, pArg->psz_results[0] );
new CmdPlaylistLoad( pIntf, sFromLocale( pArg->psz_results[0] ) );
// Push the command in the asynchronous command queue
AsyncQueue *pQueue = AsyncQueue::instance( pIntf );
......
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