Commit 27220f26 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Unbreak streaming wizard in Unicode compile

(DO NOT use c_str() !!!)
parent 9c3e9298
...@@ -1087,7 +1087,7 @@ void wizStreamingMethodPage::OnWizardPageChanging(wxWizardEvent& event) ...@@ -1087,7 +1087,7 @@ void wizStreamingMethodPage::OnWizardPageChanging(wxWizardEvent& event)
} }
} }
p_parent->SetStream( methods_array[i_method].psz_access , p_parent->SetStream( methods_array[i_method].psz_access ,
(char *)address_txtctrl->GetValue().c_str() ); (char *)address_txtctrl->GetValue().mb_str() );
/* Set the action for the muxer page */ /* Set the action for the muxer page */
((wizEncapPage*)GetNext())->SetAction( p_parent->GetAction() ); ((wizEncapPage*)GetNext())->SetAction( p_parent->GetAction() );
......
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