Commit 74915476 authored by Anil Daoud's avatar Anil Daoud

* wizard.cpp: compilation fixes

parent 3edc65f5
...@@ -1008,7 +1008,7 @@ void wizStreamingMethodPage::OnWizardPageChanging(wxWizardEvent& event) ...@@ -1008,7 +1008,7 @@ void wizStreamingMethodPage::OnWizardPageChanging(wxWizardEvent& event)
if( !event.GetDirection() ) return; if( !event.GetDirection() ) return;
/* Check valid address */ /* Check valid address */
if( i_method == 1 && !ismult((char *) address_txtctrl->GetValue().mb_str()) ) if( i_method == 1 && !ismult((char *) address_txtctrl->GetValue().c_str()) )
{ {
wxMessageBox( wxU( INVALID_MCAST_ADDRESS ) , wxU( ERROR_MSG ), wxMessageBox( wxU( INVALID_MCAST_ADDRESS ) , wxU( ERROR_MSG ),
wxICON_WARNING | wxOK, this->p_parent ); wxICON_WARNING | wxOK, this->p_parent );
...@@ -1033,7 +1033,7 @@ void wizStreamingMethodPage::OnWizardPageChanging(wxWizardEvent& event) ...@@ -1033,7 +1033,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().mb_str() ); (char *)address_txtctrl->GetValue().c_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() );
...@@ -1181,7 +1181,7 @@ void wizTranscodeExtraPage::OnSelectFile( wxCommandEvent &event) ...@@ -1181,7 +1181,7 @@ void wizTranscodeExtraPage::OnSelectFile( wxCommandEvent &event)
if( file_dialog->GetFilename().mb_str() ) if( file_dialog->GetFilename().mb_str() )
{ {
p_parent->SetTranscodeOut( (char*)file_dialog->GetFilename(). p_parent->SetTranscodeOut( (char*)file_dialog->GetFilename().
mb_str() ); c_str() );
} }
} }
......
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