Missing a wxT in call to LogDebug

This commit is contained in:
Lorenzo Marcantonio 2012-08-29 13:28:37 +02:00
parent 5b9c354759
commit 96bf0a5460
1 changed files with 2 additions and 1 deletions

View File

@ -4101,7 +4101,8 @@ void FPL_CACHE::Save()
abs_lib_name.MakeAbsolute();
tempFileName = wxFileName::CreateTempFileName( abs_lib_name.GetFullPath() );
wxLogDebug( "tempFileName:'%s' m_lib_name:'%s'\n", TO_UTF8( tempFileName ), TO_UTF8( m_lib_name ) );
wxLogDebug( wxT( "tempFileName:'%s' m_lib_name:'%s'\n" ),
TO_UTF8( tempFileName ), TO_UTF8( m_lib_name ) );
FILE* fp = wxFopen( tempFileName, wxT( "w" ) );
if( !fp )