author | andyq <andyq> | 2002-10-21 16:02:45 (UTC) |
---|---|---|
committer | andyq <andyq> | 2002-10-21 16:02:45 (UTC) |
commit | 71c7800e8ae5dc2d701242828ceb8c11bcd96fbe (patch) (side-by-side diff) | |
tree | 5068eae7a8a4059a4092dce2101bf906761e53bf | |
parent | bb135a644e61cbc30116b96ff8fb24dfb7576a21 (diff) | |
download | opie-71c7800e8ae5dc2d701242828ceb8c11bcd96fbe.zip opie-71c7800e8ae5dc2d701242828ceb8c11bcd96fbe.tar.gz opie-71c7800e8ae5dc2d701242828ceb8c11bcd96fbe.tar.bz2 |
Changed so that there are 13 letter buttons on each line - previously N, O & P
were missing (presumed dead)
-rw-r--r-- | noncore/settings/aqpkg/networkpkgmgr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/settings/aqpkg/networkpkgmgr.cpp b/noncore/settings/aqpkg/networkpkgmgr.cpp index 9acaaf1..52d95a8 100644 --- a/noncore/settings/aqpkg/networkpkgmgr.cpp +++ b/noncore/settings/aqpkg/networkpkgmgr.cpp @@ -130,17 +130,17 @@ void NetworkPackageManager :: initGui() { char text[2]; text[1] = '\0'; for ( int i = 0 ; i < 26 ; ++i ) { text[0] = 'A' + i; LetterPushButton *b = new LetterPushButton( text, this ); connect( b, SIGNAL( released( QString ) ), this, SLOT( letterPushed( QString ) ) ); - if ( i < 16 ) + if ( i < 13 ) hbox3->addWidget( b ); else hbox4->addWidget( b ); } } vbox->addWidget( packagesList ); packagesList->addColumn( "Packages" ); |