By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 1729
Collapse All | Expand All

(-)tdelibs/tdeui/kxmlguiclient.cpp (-7 / +10 lines)
Lines 77-93 Link Here
77
77
78
KXMLGUIClient::~KXMLGUIClient()
78
KXMLGUIClient::~KXMLGUIClient()
79
{
79
{
80
  if ( d->m_parent )
80
  if ( d ) {
81
    d->m_parent->removeChildClient( this );
81
    if ( d->m_parent ) {
82
      d->m_parent->removeChildClient( this );
83
    }
82
84
83
  TQPtrListIterator<KXMLGUIClient> it( d->m_children );
85
    TQPtrListIterator<KXMLGUIClient> it( d->m_children );
84
  for ( ; it.current(); ++it ) {
86
    for ( ; it.current(); ++it ) {
85
      assert( it.current()->d->m_parent == this );
87
      assert( it.current()->d->m_parent == this );
86
      it.current()->d->m_parent = 0;
88
      it.current()->d->m_parent = 0;
87
  }
89
    }
88
90
89
  delete d->m_actionCollection;
91
    delete d->m_actionCollection;
90
  delete d;
92
    delete d;
93
  }
91
}
94
}
92
95
93
TDEAction *KXMLGUIClient::action( const char *name ) const
96
TDEAction *KXMLGUIClient::action( const char *name ) const

Return to bug 1729