Changeset 628 in ntrip for trunk/BNC/bncwindow.cpp


Ignore:
Timestamp:
Dec 16, 2007, 6:57:42 PM (16 years ago)
Author:
mervart
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncwindow.cpp

    r609 r628  
    523523          this, SLOT(slotGetThreadErrors()));
    524524
    525   connect(_caster, SIGNAL(newMessage(const QByteArray&)),
    526           this, SLOT(slotMessage(const QByteArray&)));
    527   connect(_caster, SIGNAL(newMessage(const QByteArray&)),
    528           (bncApp*)qApp, SLOT(slotMessage(const QByteArray&)));
     525  connect(_caster, SIGNAL(newMessage(QByteArray)),
     526          this, SLOT(slotMessage(QByteArray)));
     527  connect(_caster, SIGNAL(newMessage(QByteArray)),
     528          (bncApp*)qApp, SLOT(slotMessage(QByteArray)));
    529529
    530530  slotMessage("============ Start BNC ============");
     
    543543    bncGetThread* getThread = new bncGetThread(url, format, latitude, longitude, nmea, iRow);
    544544
    545     connect(getThread, SIGNAL(newMessage(const QByteArray&)),
    546             this, SLOT(slotMessage(const QByteArray&)));
    547     connect(getThread, SIGNAL(newMessage(const QByteArray&)),
    548             (bncApp*)qApp, SLOT(slotMessage(const QByteArray&)));
    549 
    550     connect(getThread, SIGNAL(newBytes(const QByteArray, double)),
     545    connect(getThread, SIGNAL(newMessage(QByteArray)),
     546            this, SLOT(slotMessage(QByteArray)));
     547    connect(getThread, SIGNAL(newMessage(QByteArray)),
     548            (bncApp*)qApp, SLOT(slotMessage(QByteArray)));
     549
     550    connect(getThread, SIGNAL(newBytes(QByteArray, double)),
    551551            (bncTableItem*) _mountPointsTable->item(iRow, 6),
    552             SLOT(slotNewBytes(const QByteArray, double)));
     552            SLOT(slotNewBytes(QByteArray, double)));
    553553
    554554    _caster->addGetThread(getThread);
Note: See TracChangeset for help on using the changeset viewer.