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 1656
Collapse All | Expand All

(-)a/kded/kdedmodule.cpp (+2 lines)
Lines 38-43 public: Link Here
38
38
39
KDEDModule::KDEDModule(const TQCString &name) : TQObject(), DCOPObject(name)
39
KDEDModule::KDEDModule(const TQCString &name) : TQObject(), DCOPObject(name)
40
{
40
{
41
printf("[debug] [KDEDModule] In KDEDModule::KDEDModule(%s)\n", name.data()); fflush(stdout);
41
   d = new KDEDModulePrivate;
42
   d = new KDEDModulePrivate;
42
   d->objMap = 0;
43
   d->objMap = 0;
43
   d->timeout = 0;
44
   d->timeout = 0;
Lines 46-51 KDEDModule::KDEDModule(const TQCString &name) : TQObject(), DCOPObject(name) Link Here
46
  
47
  
47
KDEDModule::~KDEDModule()
48
KDEDModule::~KDEDModule()
48
{
49
{
50
printf("[debug] [KDEDModule] In ~KDEDModule::KDEDModule(%s)\n", objId().data()); fflush(stdout);
49
   emit moduleDeleted(this);
51
   emit moduleDeleted(this);
50
   delete d; d = 0;
52
   delete d; d = 0;
51
}
53
}

Return to bug 1656