summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/packagemanager/oipkgconfigdlg.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/noncore/settings/packagemanager/oipkgconfigdlg.cpp b/noncore/settings/packagemanager/oipkgconfigdlg.cpp
index 25052f8..886430f 100644
--- a/noncore/settings/packagemanager/oipkgconfigdlg.cpp
+++ b/noncore/settings/packagemanager/oipkgconfigdlg.cpp
@@ -530,33 +530,32 @@ void OIpkgConfigDlg::slotServerUpdate()
530 530
531 // Update list box 531 // Update list box
532 m_serverList->changeItem( newName, m_serverCurrent ); 532 m_serverList->changeItem( newName, m_serverCurrent );
533 } 533 }
534 } 534 }
535 } 535 }
536 else 536 else
537 { 537 {
538 // Add new destination to configuration list 538 // Add new destination to configuration list
539 m_configs->append( new OConfItem( OConfItem::Source, newName, 539 m_configs->append( new OConfItem( OConfItem::Source, newName,
540 m_serverLocation->text(), m_serverActive->isChecked() ) ); 540 m_serverLocation->text(), m_serverActive->isChecked() ) );
541 m_configs->sort(); 541 m_configs->sort();
542 542
543 m_serverList->insertItem( newName ); 543 m_serverList->insertItem( newName );
544 m_serverList->setCurrentItem( m_serverList->count() ); 544 m_serverList->setCurrentItem( m_serverList->count() );
545 m_serverNew = false; 545 m_serverNew = false;
546// m_serverList->insertItem( newName );
547 } 546 }
548} 547}
549 548
550void OIpkgConfigDlg::slotDestEdit( int index ) 549void OIpkgConfigDlg::slotDestEdit( int index )
551{ 550{
552 m_destNew = false; 551 m_destNew = false;
553 m_destCurrent = index; 552 m_destCurrent = index;
554 553
555 // Find selected destination in list 554 // Find selected destination in list
556 OConfItem *destination = findConfItem( OConfItem::Destination, m_destList->currentText() ); 555 OConfItem *destination = findConfItem( OConfItem::Destination, m_destList->currentText() );
557 556
558 // Display destination details 557 // Display destination details
559 if ( destination ) 558 if ( destination )
560 { 559 {
561 m_destCurrName = destination->name(); 560 m_destCurrName = destination->name();
562 m_destName->setText( destination->name() ); 561 m_destName->setText( destination->name() );