From e9694509281cd3378759235433f576f2bfdb72ba Mon Sep 17 00:00:00 2001 From: =?utf8?q?Cl=C3=A9ment=20Stenac?= Date: Sun, 23 Jan 2005 21:07:24 +0000 Subject: [PATCH] Fix breakage in transcode file selection --- modules/gui/wxwindows/wizard.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/gui/wxwindows/wizard.cpp b/modules/gui/wxwindows/wizard.cpp index 714dbbf2d7..886708d163 100644 --- a/modules/gui/wxwindows/wizard.cpp +++ b/modules/gui/wxwindows/wizard.cpp @@ -1273,7 +1273,7 @@ void wizTranscodeExtraPage::OnWizardPageChanging( wxWizardEvent& event ) } if( event.GetDirection() ) { - p_parent->SetTranscodeOut( (char *)file_text->GetValue().c_str()); + p_parent->SetTranscodeOut( (char *)file_text->GetValue().mb_str()); } } -- 2.39.2