comparison gui/ui/gtk/url.c @ 34610:4ff933a89818

Cosmetic: Rename functions in list.c. Additionally, change a parameter name of new listMgr() and add some doxygen comments to list.h.
author ib
date Sun, 12 Feb 2012 18:44:19 +0000
parents eb6344ee99ac
children 73a5ecb53ee2
comparison
equal deleted inserted replaced
34609:a8497c26c9f1 34610:4ff933a89818
99 } 99 }
100 URLComboEntrys=g_list_prepend( URLComboEntrys,(gchar *)str ); 100 URLComboEntrys=g_list_prepend( URLComboEntrys,(gchar *)str );
101 101
102 item=calloc( 1,sizeof( urlItem ) ); 102 item=calloc( 1,sizeof( urlItem ) );
103 item->url=gstrdup( str ); 103 item->url=gstrdup( str );
104 listSet( gtkAddURLItem,item ); 104 listMgr( gtkAddURLItem,item );
105 105
106 uiSetFileName( NULL,str,STREAMTYPE_STREAM ); guiInfo.NewPlay=GUI_FILE_NEW; 106 uiSetFileName( NULL,str,STREAMTYPE_STREAM ); guiInfo.NewPlay=GUI_FILE_NEW;
107 uiEventHandling( evPlay,0 ); 107 uiEventHandling( evPlay,0 );
108 } 108 }
109 } 109 }