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

(-)digikam-trinity-14.0.13/digikam/libs/threadimageio/loadingcache.cpp~ (-3 / +5 lines)
Lines 126-132 Link Here
126
    {
126
    {
127
        // schedule update of file watch
127
        // schedule update of file watch
128
        // KDirWatch can only be accessed from main thread!
128
        // KDirWatch can only be accessed from main thread!
129
        TQApplication::postEvent(this, new TQCustomEvent(TQEvent::User));
129
	addToWatch();
130
        //TQApplication::postEvent(this, new TQCustomEvent(TQEvent::User));
130
    }
131
    }
131
    return successfulyInserted;
132
    return successfulyInserted;
132
}
133
}
Lines 158-167 Link Here
158
    }
159
    }
159
}
160
}
160
161
161
void LoadingCache::customEvent(TQCustomEvent *)
162
void LoadingCache::addToWatch( )
163
//void LoadingCache::customEvent(TQCustomEvent *)
162
{
164
{
163
    // Event comes from main thread, we need to lock ourselves.
165
    // Event comes from main thread, we need to lock ourselves.
164
    CacheLock lock(this);
166
    //CacheLock lock(this);
165
167
166
    // get a list of files in cache that need watch
168
    // get a list of files in cache that need watch
167
    TQStringList toBeAdded;
169
    TQStringList toBeAdded;
(-)digikam-trinity-14.0.13/digikam/libs/threadimageio/loadingcache.h~ (-1 / +2 lines)
Lines 113-119 Link Here
113
113
114
protected:
114
protected:
115
115
116
    virtual void customEvent (TQCustomEvent *event);
116
    void addToWatch( );
117
    //virtual void customEvent (TQCustomEvent *event);
117
118
118
private slots:
119
private slots:
119
120

Return to bug 3192