Lines Matching refs:xControl
343 uno::Reference< awt::XControl > xControl = pCtrls[ n ]; in implUpdateVisibility() local
348 uno::Reference< awt::XControlModel > xModel( xControl->getModel() ); in implUpdateVisibility()
364 ( xControl, uno::UNO_QUERY ); in implUpdateVisibility()
480 uno::Reference< awt::XControl > xControl( _rEvt.Source, uno::UNO_QUERY ); in disposing() local
481 if ( xControl.is() ) in disposing()
482 removeControl( xControl ); in disposing()
507 uno::Reference< awt::XControl > xControl; in insert() local
508 if ( !( _rElement >>= xControl ) || !xControl.is() ) in insert()
515 return impl_addControl( xControl, NULL ); in insert()
522 uno::Reference< awt::XControl > xControl; in removeByIdentifier() local
523 if ( !mpControls->getControlForIdentifier( _nIdentifier, xControl ) ) in removeByIdentifier()
529 impl_removeControl( _nIdentifier, xControl, NULL ); in removeByIdentifier()
574 uno::Reference< awt::XControl > xControl; in getByIdentifier() local
575 if ( !mpControls->getControlForIdentifier( _nIdentifier, xControl ) ) in getByIdentifier()
577 return uno::makeAny( xControl ); in getByIdentifier()
693 uno::Reference< awt::XControl > xControl; in impl_removeControl() local
694 bool bHas = mpControls->getControlForIdentifier( _nId, xControl ); in impl_removeControl()
695 …DBG_ASSERT( bHas && xControl == _rxControl, "UnoControlContainer::impl_removeControl: inconsistenc… in impl_removeControl()