diff options
author | Thierry Vignaud <tv@mandriva.org> | 2008-02-07 15:39:47 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2008-02-07 15:39:47 +0000 |
commit | 9621b7d9e490bb3b267d2be9ff15af91b7d8cb7d (patch) | |
tree | bce49a42f35cab09fbfe8aeffaf96816bcf11447 | |
parent | 05b74e82953857bb3c3f2098d503ffd30ae072e1 (diff) | |
download | rpmdrake-9621b7d9e490bb3b267d2be9ff15af91b7d8cb7d.tar rpmdrake-9621b7d9e490bb3b267d2be9ff15af91b7d8cb7d.tar.gz rpmdrake-9621b7d9e490bb3b267d2be9ff15af91b7d8cb7d.tar.bz2 rpmdrake-9621b7d9e490bb3b267d2be9ff15af91b7d8cb7d.tar.xz rpmdrake-9621b7d9e490bb3b267d2be9ff15af91b7d8cb7d.zip |
(do_search) explain a flush()
-rwxr-xr-x | rpmdrake | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -116,7 +116,7 @@ sub do_search($$$$$$$) { $searchstop and last; if (my ($pkg) = chomp_(/:name:(.+-[^-]+-[^-]+.[^.-]+)$/)) { $progresscount++; $progresscount <= $total_size and $searchprogress->set_fraction($progresscount/$total_size); - $searchw->flush; + $searchw->flush; # refresh and handle clicks exists $pkgs->{$pkg} and $found and push @search_results, $pkg; undef $found; next; |