Commit 0863e5b7 authored by Jean-Paul Saman's avatar Jean-Paul Saman

Cleanup action.

parent 86f66ed9
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* callbacks.c : Callbacks for the Familiar Linux Gtk+ plugin. * callbacks.c : Callbacks for the Familiar Linux Gtk+ plugin.
***************************************************************************** *****************************************************************************
* Copyright (C) 2000, 2001 VideoLAN * Copyright (C) 2000, 2001 VideoLAN
* $Id: callbacks.c,v 1.15 2002/12/16 21:48:17 jpsaman Exp $ * $Id: callbacks.c,v 1.16 2002/12/16 22:06:59 jpsaman Exp $
* *
* Authors: Jean-Paul Saman <jpsaman@wxs.nl> * Authors: Jean-Paul Saman <jpsaman@wxs.nl>
* *
...@@ -282,12 +282,13 @@ void ...@@ -282,12 +282,13 @@ void
on_toolbar_rewind_clicked (GtkButton *button, on_toolbar_rewind_clicked (GtkButton *button,
gpointer user_data) gpointer user_data)
{ {
intf_thread_t * p_intf = GtkGetIntf( GTK_WIDGET(button) ); intf_thread_t * p_intf = GtkGetIntf( button );
if( p_intf->p_sys->p_input ) if( p_intf->p_sys->p_input != NULL )
{ {
input_SetStatus( p_intf->p_sys->p_input, INPUT_STATUS_SLOWER ); input_SetStatus( p_intf->p_sys->p_input, INPUT_STATUS_SLOWER );
} }
else msg_Err(p_intf, "p_intf->p_sys->p_input is NULL" );
} }
...@@ -295,12 +296,13 @@ void ...@@ -295,12 +296,13 @@ void
on_toolbar_pause_clicked (GtkButton *button, on_toolbar_pause_clicked (GtkButton *button,
gpointer user_data) gpointer user_data)
{ {
intf_thread_t * p_intf = GtkGetIntf( GTK_WIDGET( button ) ); intf_thread_t * p_intf = GtkGetIntf( button );
if( p_intf->p_sys->p_input ) if( p_intf->p_sys->p_input != NULL )
{ {
input_SetStatus( p_intf->p_sys->p_input, INPUT_STATUS_PAUSE ); input_SetStatus( p_intf->p_sys->p_input, INPUT_STATUS_PAUSE );
} }
else msg_Err(p_intf, "p_intf->p_sys->p_input is NULL" );
} }
...@@ -356,12 +358,13 @@ void ...@@ -356,12 +358,13 @@ void
on_toolbar_forward_clicked (GtkButton *button, on_toolbar_forward_clicked (GtkButton *button,
gpointer user_data) gpointer user_data)
{ {
intf_thread_t * p_intf = GtkGetIntf( GTK_WIDGET( button )); intf_thread_t * p_intf = GtkGetIntf( button );
if( p_intf->p_sys->p_input ) if( p_intf->p_sys->p_input != NULL )
{ {
input_SetStatus( p_intf->p_sys->p_input, INPUT_STATUS_FASTER ); input_SetStatus( p_intf->p_sys->p_input, INPUT_STATUS_FASTER );
} }
else msg_Err(p_intf, "p_intf->p_sys->p_input is NULL" );
} }
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* familiar.h: private Gtk+ interface description * familiar.h: private Gtk+ interface description
***************************************************************************** *****************************************************************************
* Copyright (C) 1999, 2000 VideoLAN * Copyright (C) 1999, 2000 VideoLAN
* $Id: familiar.h,v 1.8 2002/12/15 22:45:35 jpsaman Exp $ * $Id: familiar.h,v 1.9 2002/12/16 22:06:59 jpsaman Exp $
* *
* Authors: Jean-Paul Saman <jpsaman@wxs.nl> * Authors: Jean-Paul Saman <jpsaman@wxs.nl>
* *
...@@ -41,7 +41,6 @@ struct intf_sys_t ...@@ -41,7 +41,6 @@ struct intf_sys_t
GtkCList * p_clist; GtkCList * p_clist;
vlc_bool_t b_autoplayfile; vlc_bool_t b_autoplayfile;
vlc_bool_t b_filelist_update;
/* The input thread */ /* The input thread */
input_thread_t * p_input; input_thread_t * p_input;
}; };
......
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