diff --git a/PAULs_LPPMON_PLUGINS.pro.user b/PAULs_LPPMON_PLUGINS.pro.user --- a/PAULs_LPPMON_PLUGINS.pro.user +++ b/PAULs_LPPMON_PLUGINS.pro.user @@ -1,6 +1,6 @@ - + ProjectExplorer.Project.ActiveTarget diff --git a/rmapplugin/tmstatistics.cpp b/rmapplugin/tmstatistics.cpp --- a/rmapplugin/tmstatistics.cpp +++ b/rmapplugin/tmstatistics.cpp @@ -731,7 +731,7 @@ unsigned int TMStatistics::getSID(TMPack if (csvPacketRecordFileEn == true) { - *(this->packetLogFileStrm) + *(this->csvPacketRecordFileStrm) << QString::number(currentDate.year()) + " " << QString::number(currentDate.month()) + " " << QString::number(currentDate.day()) + " " @@ -739,10 +739,10 @@ unsigned int TMStatistics::getSID(TMPack << QString::number(currentTime.msec()); for (i=0; i< packet->size; i++) { - *(this->packetLogFileStrm) + *(this->csvPacketRecordFileStrm) << ", " + QString::number( packet->Value[i] ); } - *(this->packetLogFileStrm) + *(this->csvPacketRecordFileStrm) << endl; }