After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 117516 - "Delete all articles" shouldn't be much longer when group loaded
"Delete all articles" shouldn't be much longer when group loaded
Status: RESOLVED FIXED
Product: Pan
Classification: Other
Component: general
pre-0.14.1 betas
Other Linux
: Low enhancement
: 0.14.1
Assigned To: Charles Kerr
Pan QA Team
Depends on:
Blocks:
 
 
Reported: 2003-07-15 20:58 UTC by nicolas.girard
Modified: 2006-06-18 05:01 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description nicolas.girard 2003-07-15 20:58:27 UTC
The action which consists in deleting all articles in a group shouldn't
take much more time when this group is loaded in the header pane
Comment 1 Charles Kerr 2003-07-23 15:46:31 UTC
There needs to be some way for the header pane to suss out that _all_
articles are being deleted and call gtk_clist_clear() instead, but I
don't like the idea of walking through each node in the header pane
and looking for matches in the `articles being removed' event's list
-- that would be slow too.

Maybe the header pane's `articles being removed' event handler could
compare the number of articles being removed to group->article_qty.
If they match, then we could call gtk_clist_clear() instead of
removing each node at a time...