Changeset 59 in ntrip for trunk/BNC/bncmain.cpp
- Timestamp:
- Aug 24, 2006, 2:16:23 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncmain.cpp
r36 r59 83 83 QListIterator<QString> it(settings.value("mountPoints").toStringList()); 84 84 while (it.hasNext()) { 85 QUrl url(it.next()); 85 QStringList hlp = it.next().split(" "); 86 QUrl url(hlp[0]); 86 87 QByteArray mountPoint = url.path().mid(1).toAscii(); 88 QByteArray format = hlp[1].toAscii(); 87 89 88 90 bncGetThread* getThread = new bncGetThread(url.host(), url.port(), 89 91 proxyHost, proxyPort, 90 mountPoint, user, password); 92 mountPoint, user, password, 93 format); 91 94 caster->addGetThread(getThread); 92 95
Note:
See TracChangeset
for help on using the changeset viewer.