Commit 36eb5529 authored by Jean-Paul Saman's avatar Jean-Paul Saman

Patch by Remi Duraffort <ivoire at via.ecp.fr>: Replace fprintf with msg_Err().

parent bf798aed
...@@ -1057,11 +1057,12 @@ void PLModel::popupInfo() ...@@ -1057,11 +1057,12 @@ void PLModel::popupInfo()
void PLModel::popupStream() void PLModel::popupStream()
{ {
fprintf( stderr, "Stream not implemented\n" ); msg_Err( p_playlist, "Stream not implemented" );
} }
void PLModel::popupSave() void PLModel::popupSave()
{ {
fprintf( stderr, "Save not implemented\n" ); msg_Err( p_playlist, "Save not implemented" );
} }
#ifdef WIN32 #ifdef WIN32
......
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