[vlc-devel] commit: PDA: broken dead code ( Rémi Denis-Courmont )
git version control
git at videolan.org
Sun May 10 17:45:04 CEST 2009
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Sun May 10 18:34:47 2009 +0300| [4a143959d50fc39fb8214deb95c7d87745147086] | committer: Rémi Denis-Courmont
PDA: broken dead code
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=4a143959d50fc39fb8214deb95c7d87745147086
---
modules/gui/pda/pda.c | 39 ---------------------------------------
1 files changed, 0 insertions(+), 39 deletions(-)
diff --git a/modules/gui/pda/pda.c b/modules/gui/pda/pda.c
index 6b7bb03..61c4d90 100644
--- a/modules/gui/pda/pda.c
+++ b/modules/gui/pda/pda.c
@@ -51,7 +51,6 @@ static int Open ( vlc_object_t * );
static void Close ( vlc_object_t * );
static void Run ( intf_thread_t * );
-void GtkAutoPlayFile ( vlc_object_t * );
static int Manage ( intf_thread_t *p_intf );
void GtkDisplayDate ( GtkAdjustment *p_adj, gpointer userdata );
gint GtkModeManage ( intf_thread_t * p_intf );
@@ -70,7 +69,6 @@ vlc_module_begin ()
set_description( N_("PDA Linux Gtk2+ interface") )
set_category( CAT_INTERFACE )
set_subcategory( SUBCAT_INTERFACE_MAIN )
-// add_bool( "pda-autoplayfile", 1, GtkAutoPlayFile, AUTOPLAYFILE_TEXT, AUTOPLAYFILE_LONGTEXT, true )
set_capability( "interface", 0 )
set_callbacks( Open, Close )
add_shortcut( "pda" )
@@ -349,43 +347,6 @@ static void Run( intf_thread_t *p_intf )
vlc_restorecancel(canc);
}
-/*****************************************************************************
- * GtkAutoplayFile: Autoplay file depending on configuration settings
- *****************************************************************************/
-void GtkAutoPlayFile( vlc_object_t *p_this )
-{
- GtkWidget *cbautoplay;
- intf_thread_t *p_intf;
- int i_index;
- vlc_list_t *p_list = vlc_list_find( p_this, VLC_OBJECT_INTF,
- FIND_ANYWHERE );
-
- for( i_index = 0; i_index < p_list->i_count; i_index++ )
- {
- p_intf = (intf_thread_t *)p_list->p_values[i_index].p_object ;
-
- if( strcmp( MODULE_STRING, module_get_object(p_intf->p_module) ) )
- {
- continue;
- }
- cbautoplay = GTK_WIDGET( gtk_object_get_data(
- GTK_OBJECT( p_intf->p_sys->p_window ),
- "cbautoplay" ) );
-
- if( !config_GetInt( p_this, "pda-autoplayfile" ) )
- {
- p_intf->p_sys->b_autoplayfile = false;
- }
- else
- {
- p_intf->p_sys->b_autoplayfile = true;
- }
- gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( cbautoplay ),
- p_intf->p_sys->b_autoplayfile );
- }
- vlc_list_release( p_list );
-}
-
/* following functions are local */
/*****************************************************************************
More information about the vlc-devel
mailing list