Ignore:
Timestamp:
May 4, 2012, 5:43:29 PM (12 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/upload/bncrtnetdecoder.cpp

    r3233 r4111  
    6060      int  outPort = hlp[1].toInt();
    6161      bool CoM     = (hlp[5].toInt() == Qt::Checked);
     62      int PID = 0;
     63      if (hlp.size() > 8) {
     64        PID = hlp[8].toInt();
     65      }
     66      int SID = 0;
     67      if (hlp.size() > 9) {
     68        SID = hlp[9].toInt();
     69      }
     70      int IOD = 0;
     71      if (hlp.size() > 10) {
     72        IOD = hlp[10].toInt();
     73      }
    6274      bncRtnetUploadCaster* newCaster = new bncRtnetUploadCaster(
    6375                                                       hlp[2], hlp[0], outPort,
    6476                                                       hlp[3], hlp[4], CoM,
    65                                                        hlp[6], hlp[7], "", iRow);
     77                                                       hlp[6], hlp[7], "",
     78                                                       PID, SID, IOD, iRow);
    6679      newCaster->start();
    6780      _casters.push_back(newCaster);
Note: See TracChangeset for help on using the changeset viewer.