Commit f5808afe authored by Gildas Bazin's avatar Gildas Bazin

* modules/gui/wxwindows/messages.cpp: forgot to initialize b_verbose ;)
parent d246063a
......@@ -2,7 +2,7 @@
* playlist.cpp : wxWindows plugin for vlc
*****************************************************************************
* Copyright (C) 2000-2001 VideoLAN
* $Id: messages.cpp,v 1.14 2003/08/27 11:53:26 gbazin Exp $
* $Id: messages.cpp,v 1.15 2003/08/30 16:34:12 gbazin Exp $
*
* Authors: Olivier Teulire <ipkiss@via.ecp.fr>
*
......@@ -67,6 +67,7 @@ Messages::Messages( intf_thread_t *_p_intf, wxWindow *p_parent ):
{
/* Initializations */
p_intf = _p_intf;
b_verbose = VLC_FALSE;
SetIcon( *p_intf->p_sys->p_icon );
save_log_dialog = NULL;
......@@ -145,8 +146,7 @@ void Messages::UpdateLog()
{
if( !b_verbose &&
VLC_MSG_ERR != p_sub->p_msg[i_start].i_type &&
VLC_MSG_INFO != p_sub->p_msg[i_start].i_type )
VLC_MSG_ERR != p_sub->p_msg[i_start].i_type )
continue;
/* Append all messages to log window */
......
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