Example #1
0
void WdeShutdownToolBars( void )
{
    WdeToolBar  *tbar;
    LIST        *tlist;

    tlist = WdeListCopy( WdeToolBarList );
    for( ; tlist != NULL; tlist = ListConsume( tlist ) ) {
        tbar = ListElement( tlist );
        ToolBarDestroy( tbar->tbar );
    }
    ToolBarFini( NULL );

    ListFree( WdeToolBarList );
}
Example #2
0
void WdeDestroyToolBar( WdeToolBar *tbar )
{
    ToolBarDestroy( tbar->tbar );
}
Example #3
0
void WREDestroyToolBar( WREToolBar *tbar )
{
    ToolBarDestroy( tbar->tbar );
}