Commit 26ca5a34 authored by Gildas Bazin's avatar Gildas Bazin

* modules/gui/skins/src/vlcproc.cpp: compilation fix.
parent 5143bba0
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* vlcproc.cpp: VlcProc class * vlcproc.cpp: VlcProc class
***************************************************************************** *****************************************************************************
* Copyright (C) 2003 VideoLAN * Copyright (C) 2003 VideoLAN
* $Id: vlcproc.cpp,v 1.30 2003/06/04 16:03:33 gbazin Exp $ * $Id: vlcproc.cpp,v 1.31 2003/06/04 16:44:39 gbazin Exp $
* *
* Authors: Olivier Teulire <ipkiss@via.ecp.fr> * Authors: Olivier Teulire <ipkiss@via.ecp.fr>
* Emmanuel Puig <karibu@via.ecp.fr> * Emmanuel Puig <karibu@via.ecp.fr>
...@@ -98,7 +98,7 @@ bool VlcProc::EventProc( Event *evt ) ...@@ -98,7 +98,7 @@ bool VlcProc::EventProc( Event *evt )
return true; return true;
case VLC_OPEN: case VLC_OPEN:
p_intf->p_sys->p_dialogs->ShowOpen( TRUE ); p_intf->p_sys->p_dialogs->ShowOpen( true );
InterfaceRefresh(); InterfaceRefresh();
return true; return true;
...@@ -131,7 +131,7 @@ bool VlcProc::EventProc( Event *evt ) ...@@ -131,7 +131,7 @@ bool VlcProc::EventProc( Event *evt )
return true; return true;
case VLC_PLAYLIST_ADD_FILE: case VLC_PLAYLIST_ADD_FILE:
p_intf->p_sys->p_dialogs->ShowOpen( FALSE ); p_intf->p_sys->p_dialogs->ShowOpen( false );
InterfaceRefresh(); InterfaceRefresh();
return true; return true;
......
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