author | andyq <andyq> | 2002-10-16 23:43:27 (UTC) |
---|---|---|
committer | andyq <andyq> | 2002-10-16 23:43:27 (UTC) |
commit | 5d28c61d84da1814d356540b557bbfe026da98aa (patch) (side-by-side diff) | |
tree | 2bf8beae274d59573898cead3fc925d2663348b8 /noncore | |
parent | 35a5fb97aa3cc92e626286285d22d8fbf9d61e3e (diff) | |
download | opie-5d28c61d84da1814d356540b557bbfe026da98aa.zip opie-5d28c61d84da1814d356540b557bbfe026da98aa.tar.gz opie-5d28c61d84da1814d356540b557bbfe026da98aa.tar.bz2 |
Fixed bug in jump to package
-rw-r--r-- | noncore/settings/aqpkg/networkpkgmgr.cpp | 22 |
1 files changed, 19 insertions, 3 deletions
diff --git a/noncore/settings/aqpkg/networkpkgmgr.cpp b/noncore/settings/aqpkg/networkpkgmgr.cpp index 3ce7960..6f528a1 100644 --- a/noncore/settings/aqpkg/networkpkgmgr.cpp +++ b/noncore/settings/aqpkg/networkpkgmgr.cpp @@ -492,17 +492,33 @@ void NetworkPackageManager :: displayText( const QString &t ) void NetworkPackageManager :: letterPushed( QString t ) { - QCheckListItem *item = (QCheckListItem *)packagesList->firstChild(); + QCheckListItem *top = (QCheckListItem *)packagesList->firstChild(); + QCheckListItem *start = (QCheckListItem *)packagesList->currentItem(); + if ( packagesList->firstChild() == 0 ) + return; + + QCheckListItem *item; + if ( start == 0 ) + { + item = (QCheckListItem *)packagesList->firstChild(); + start = top; + } + else + item = (QCheckListItem *)start->nextSibling(); + + if ( item == 0 ) + item = (QCheckListItem *)packagesList->firstChild(); do { if ( item->text().lower().startsWith( t.lower() ) ) { - cout << "Found - item->text()" << endl; packagesList->setSelected( item, true ); packagesList->ensureItemVisible( item ); break; } item = (QCheckListItem *)item->nextSibling(); - } while ( item ); + if ( !item ) + item = (QCheckListItem *)packagesList->firstChild(); + } while ( item != start); } |