Commit 7365e409 authored by Felix Paul Kühne's avatar Felix Paul Kühne

* forgot these in the previous commit (updated to current API)

parent 0a9dbda9
...@@ -2018,7 +2018,7 @@ static int InputSourceInit( input_thread_t *p_input, ...@@ -2018,7 +2018,7 @@ static int InputSourceInit( input_thread_t *p_input,
if( in->p_access == NULL ) if( in->p_access == NULL )
{ {
msg_Err( p_input, "no suitable access module for `%s'", psz_mrl ); msg_Err( p_input, "no suitable access module for `%s'", psz_mrl );
intf_UserFatal( VLC_OBJECT( p_input), intf_UserFatal( VLC_OBJECT( p_input), VLC_FALSE,
_("Your input can't be opened"), _("Your input can't be opened"),
_("VLC is unable to open the MRL '%s'." _("VLC is unable to open the MRL '%s'."
" Check the log for details."), psz_mrl ); " Check the log for details."), psz_mrl );
...@@ -2091,7 +2091,7 @@ static int InputSourceInit( input_thread_t *p_input, ...@@ -2091,7 +2091,7 @@ static int InputSourceInit( input_thread_t *p_input,
{ {
msg_Err( p_input, "no suitable demux module for `%s/%s://%s'", msg_Err( p_input, "no suitable demux module for `%s/%s://%s'",
psz_access, psz_demux, psz_path ); psz_access, psz_demux, psz_path );
intf_UserFatal( VLC_OBJECT( p_input), intf_UserFatal( VLC_OBJECT( p_input), VLC_FALSE,
_("Can't recognize the input's format"), _("Can't recognize the input's format"),
_("The format of '%s' can't be detected. " _("The format of '%s' can't be detected. "
"Have a look the log for details."), psz_mrl ); "Have a look the log for details."), psz_mrl );
......
...@@ -1270,7 +1270,7 @@ void update_download_for_real( download_thread_t *p_this ) ...@@ -1270,7 +1270,7 @@ void update_download_for_real( download_thread_t *p_this )
if( !p_stream ) if( !p_stream )
{ {
msg_Err( p_vlc, "Failed to open %s for reading", psz_src ); msg_Err( p_vlc, "Failed to open %s for reading", psz_src );
intf_UserFatal( p_vlc, "Error while Downloading...", intf_UserFatal( p_vlc, VLC_TRUE, "Error while Downloading...",
"VLC failed to open %s for reading.", psz_src ); "VLC failed to open %s for reading.", psz_src );
intf_UserHide( p_vlc, i_progress ); intf_UserHide( p_vlc, i_progress );
} }
...@@ -1281,7 +1281,7 @@ void update_download_for_real( download_thread_t *p_this ) ...@@ -1281,7 +1281,7 @@ void update_download_for_real( download_thread_t *p_this )
if( !p_file ) if( !p_file )
{ {
msg_Err( p_vlc, "Failed to open %s for writing", psz_dest ); msg_Err( p_vlc, "Failed to open %s for writing", psz_dest );
intf_UserFatal( p_vlc, "Error while Downloading...", intf_UserFatal( p_vlc, VLC_TRUE, "Error while Downloading...",
"VLC failed to open %s for writing.", psz_dest ); "VLC failed to open %s for writing.", psz_dest );
intf_UserHide( p_vlc, i_progress ); intf_UserHide( p_vlc, i_progress );
} }
......
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