From: Jean-Paul Saman Date: Thu, 6 Dec 2007 14:18:02 +0000 (+0000) Subject: Patch by Remi Duraffort : Replace fprintf with msg_Err(). X-Git-Tag: 0.9.0-test0~4253 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=36eb55290006fc0a1616fd42151b481443719867;p=vlc Patch by Remi Duraffort : Replace fprintf with msg_Err(). --- diff --git a/modules/gui/qt4/playlist_model.cpp b/modules/gui/qt4/playlist_model.cpp index 64836758b4..2b7a35092a 100644 --- a/modules/gui/qt4/playlist_model.cpp +++ b/modules/gui/qt4/playlist_model.cpp @@ -1057,11 +1057,12 @@ void PLModel::popupInfo() void PLModel::popupStream() { - fprintf( stderr, "Stream not implemented\n" ); + msg_Err( p_playlist, "Stream not implemented" ); } + void PLModel::popupSave() { - fprintf( stderr, "Save not implemented\n" ); + msg_Err( p_playlist, "Save not implemented" ); } #ifdef WIN32