Changeset 458 in ntrip


Ignore:
Timestamp:
May 11, 2007, 5:26:56 PM (17 years ago)
Author:
mervart
Message:

* empty log message *

Location:
trunk/BNC
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bnccaster.cpp

    r408 r458  
    186186////////////////////////////////////////////////////////////////////////////
    187187void bncCaster::addGetThread(bncGetThread* getThread) {
    188   connect(getThread, SIGNAL(error(const QByteArray&)),
    189           this, SLOT(slotGetThreadError(const QByteArray&)));
     188  connect(getThread, SIGNAL(error(const QByteArray)),
     189          this, SLOT(slotGetThreadError(const QByteArray)));
    190190
    191191  _staIDs.push_back(getThread->staID());
     
    195195// Error in get thread
    196196////////////////////////////////////////////////////////////////////////////
    197 void bncCaster::slotGetThreadError(const QByteArray& staID) {
     197void bncCaster::slotGetThreadError(const QByteArray staID) {
    198198  QMutexLocker locker(&_mutex);
    199199  _staIDs.removeAll(staID);
  • trunk/BNC/bnccaster.h

    r408 r458  
    5151 private slots:
    5252   void slotNewConnection();
    53    void slotGetThreadError(const QByteArray& staID);
     53   void slotGetThreadError(const QByteArray staID);
    5454   void dumpEpochSlot();
    5555
  • trunk/BNC/bncgetthread.h

    r423 r458  
    5353 signals:
    5454   void newObs(const QByteArray& staID, Observation* obs);
    55    void error(const QByteArray& staID);
    56    void newMessage(const QByteArray& msg);
     55   void error(const QByteArray staID);
     56   void newMessage(const QByteArray msg);
    5757
    5858 protected:
  • trunk/BNC/bncwindow.cpp

    r456 r458  
    561561// Display Program Messages
    562562////////////////////////////////////////////////////////////////////////////
    563 void bncWindow::slotMessage(const QByteArray& msg) {
     563void bncWindow::slotMessage(const QByteArray msg) {
    564564
    565565  const int maxBufferSize = 10000;
  • trunk/BNC/bncwindow.h

    r399 r458  
    4040 
    4141  public slots: 
    42     void slotMessage(const QByteArray& msg);
     42    void slotMessage(const QByteArray msg);
    4343
    4444  private slots:
Note: See TracChangeset for help on using the changeset viewer.