Browse Source

Ah Ah

pull/2/head
Clément Stenac 20 years ago
parent
commit
ea6f725b41
  1. 5
      modules/gui/macosx/controls.m
  2. 2
      src/input/input.c

5
modules/gui/macosx/controls.m

@ -39,6 +39,9 @@
#import "playlist.h"
#include <vlc_osd.h>
/* UGLY UGLY UGLY FIXME FIXME FIXME. Need solution for b_can_pace_control.
* Put it public ? Is it needed here ?*/
#include "../../../src/input/input_internal.h"
/*****************************************************************************
* VLCControls implementation
@ -785,7 +788,7 @@
{
if( p_input != NULL )
{
bEnabled = p_input->input.b_can_pace_control;
bEnabled = p_input->p->input.b_can_pace_control;
}
else
{

2
src/input/input.c

@ -38,7 +38,7 @@
#include <vlc_playlist.h>
#include <vlc_interface.h>
#include <vlc_url.h>
#include <vlc_demux.h>
#include <vlc_charset.h>
#ifdef HAVE_SYS_STAT_H

Loading…
Cancel
Save