// ================================================================
bool ProductsView::isBinaries( QCheckListItem* item ) const
{
+ if ( !item )
+ return false;
if ( item->childCount() > 0 && item->isEnabled() ) {
QCheckListItem* subItem = (QCheckListItem*)( item->firstChild() );
while( subItem ) {
// ================================================================
bool ProductsView::isSources( QCheckListItem* item ) const
{
+ if ( !item )
+ return false;
if ( item->childCount() > 0 && item->isEnabled() ) {
QCheckListItem* subItem = (QCheckListItem*)( item->firstChild() );
while( subItem ) {
// ================================================================
bool ProductsView::isNative( QCheckListItem* item ) const
{
+ if ( !item )
+ return false;
if ( item->childCount() > 0 && item->isEnabled() ) {
QCheckListItem* subItem = (QCheckListItem*)( item->firstChild() );
while( subItem ) {
*/
// ================================================================
void ProductsView::setBinaries( QCheckListItem* item ) {
+ if ( !item )
+ return;
if ( item->childCount() > 0 ) {
QCheckListItem* subItem = (QCheckListItem*)( item->firstChild() );
QCheckListItem* srcItem = 0;
*/
// ================================================================
void ProductsView::setSources( QCheckListItem* item ) {
+ if ( !item )
+ return;
if ( item->childCount() > 0 ) {
QCheckListItem* subItem = (QCheckListItem*)( item->firstChild() );
QCheckListItem* binItem = 0;
*/
// ================================================================
void ProductsView::setNative( QCheckListItem* item ) {
+ if ( !item )
+ return;
if ( item->childCount() > 0 ) {
QCheckListItem* subItem = (QCheckListItem*)( item->firstChild() );
QCheckListItem* binItem = 0;
*/
// ================================================================
void ProductsView::setNone( QCheckListItem* item ) {
+ if ( !item )
+ return;
if ( item->childCount() > 0 ) {
QCheckListItem* subItem = (QCheckListItem*)( item->firstChild() );
while( subItem ) {
// ================================================================
bool ProductsView::hasBinaries( QCheckListItem* item ) const
{
+ if ( !item )
+ return false;
if ( item->childCount() > 0 ) {
QCheckListItem* subItem = (QCheckListItem*)( item->firstChild() );
while( subItem ) {
// ================================================================
bool ProductsView::hasSources( QCheckListItem* item ) const
{
+ if ( !item )
+ return false;
if ( item->childCount() > 0 ) {
QCheckListItem* subItem = (QCheckListItem*)( item->firstChild() );
while( subItem ) {
// ================================================================
bool ProductsView::hasNative( QCheckListItem* item ) const
{
+ if ( !item )
+ return false;
if ( item->childCount() > 0 ) {
QCheckListItem* subItem = (QCheckListItem*)( item->firstChild() );
while( subItem ) {
// ================================================================
void ProductsView::setItemEnabled( QCheckListItem* item, const bool enable )
{
+ if ( !item )
+ return;
item->setEnabled( enable );
QListViewItem* subItem = item->firstChild();
while( subItem ) {