Lines Matching refs:pChild
55 void Container::Add( Window *pChild ) in Add() argument
57 if ( pChild ) in Add()
59 uno::Reference< awt::XLayoutConstrains > xChild( pChild->GetPeer(), uno::UNO_QUERY ); in Add()
64 void Container::Add( Container *pChild ) in Add() argument
66 if ( pChild ) in Add()
68 uno::Reference< awt::XLayoutConstrains > xChild( pChild->getImpl(), uno::UNO_QUERY ); in Add()
73 void Container::Remove( Window *pChild ) in Remove() argument
75 if ( pChild ) in Remove()
77 uno::Reference< awt::XLayoutConstrains > xChild( pChild->GetPeer(), uno::UNO_QUERY ); in Remove()
82 void Container::Remove( Container *pChild ) in Remove() argument
84 if ( pChild ) in Remove()
86 uno::Reference< awt::XLayoutConstrains > xChild( pChild->getImpl(), uno::UNO_QUERY ); in Remove()