Exemplo n.º 1
0
bool GUIDeleteItem( gui_window *wnd, unsigned id, int choice )
{
    VFIELD      *field;
    a_list      *list;

    if( GetList( wnd, id, &field, &list ) ) {
        return( GUIListBoxDeleteItem( list, choice ) );
    }
    return( FALSE );
}
Exemplo n.º 2
0
bool GUIDeleteItem( gui_window *wnd, gui_ctl_id id, int choice )
{
    VFIELD      *field;
    a_list      *list;

    if( GetList( wnd, id, &field, &list ) ) {
        return( GUIListBoxDeleteItem( list, choice ) );
    }
    return( false );
}