Changeset 59 in ntrip for trunk/BNC/bncmain.cpp


Ignore:
Timestamp:
Aug 24, 2006, 2:16:23 PM (18 years ago)
Author:
mervart
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncmain.cpp

    r36 r59  
    8383    QListIterator<QString> it(settings.value("mountPoints").toStringList());
    8484    while (it.hasNext()) {
    85       QUrl url(it.next());
     85      QStringList hlp = it.next().split(" ");
     86      QUrl url(hlp[0]);
    8687      QByteArray mountPoint = url.path().mid(1).toAscii();
     88      QByteArray format     = hlp[1].toAscii();
    8789
    8890      bncGetThread* getThread = new bncGetThread(url.host(), url.port(),
    8991                                                 proxyHost, proxyPort,
    90                                                  mountPoint, user, password);
     92                                                 mountPoint, user, password,
     93                                                 format);
    9194      caster->addGetThread(getThread);
    9295
Note: See TracChangeset for help on using the changeset viewer.