summaryrefslogtreecommitdiff
path: root/noncore
authorandyq <andyq>2002-11-21 18:13:00 (UTC)
committer andyq <andyq>2002-11-21 18:13:00 (UTC)
commita73b7fa027ccbcc8c4eabb93a167ba992440514b (patch) (unidiff)
tree894a624647196869fb7b3aaf641363c5ad18d8f5 /noncore
parent5e806f161bc0bde64d5058dab4850c45aeba2cdf (diff)
downloadopie-a73b7fa027ccbcc8c4eabb93a167ba992440514b.zip
opie-a73b7fa027ccbcc8c4eabb93a167ba992440514b.tar.gz
opie-a73b7fa027ccbcc8c4eabb93a167ba992440514b.tar.bz2
Changed debug message slightly
Diffstat (limited to 'noncore') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/aqpkg/networkpkgmgr.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/noncore/settings/aqpkg/networkpkgmgr.cpp b/noncore/settings/aqpkg/networkpkgmgr.cpp
index cf94628..e8e2982 100644
--- a/noncore/settings/aqpkg/networkpkgmgr.cpp
+++ b/noncore/settings/aqpkg/networkpkgmgr.cpp
@@ -91,15 +91,16 @@ void NetworkPackageManager :: updateData()
91 91
92 vector<Server>::iterator it; 92 vector<Server>::iterator it;
93 int activeItem = -1; 93 int activeItem = -1;
94 int i; 94 int i;
95 for ( i = 0, it = dataMgr->getServerList().begin() ; it != dataMgr->getServerList().end() ; ++it, ++i ) 95 for ( i = 0, it = dataMgr->getServerList().begin() ; it != dataMgr->getServerList().end() ; ++it, ++i )
96 { 96 {
97 cout << "Adding " << it->getServerName() << " to combobox" << endl; 97// cout << "Adding " << it->getServerName() << " to combobox" << endl;
98 if ( !it->isServerActive() ) 98 if ( !it->isServerActive() )
99 { 99 {
100 cout << it->getServerName() << " is not active" << endl;
100 i--; 101 i--;
101 continue; 102 continue;
102 } 103 }
103 serversList->insertItem( it->getServerName() ); 104 serversList->insertItem( it->getServerName() );
104 if ( it->getServerName() == currentlySelectedServer ) 105 if ( it->getServerName() == currentlySelectedServer )
105 activeItem = i; 106 activeItem = i;