From d02bf56570acf5a66e7eb44bcdf7c3d7922fa08f Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Sun, 27 Nov 2011 14:54:40 +1000 Subject: [PATCH] Bugfix to that previous commit --- SleepLib/loader_plugins/prs1_loader.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SleepLib/loader_plugins/prs1_loader.cpp b/SleepLib/loader_plugins/prs1_loader.cpp index d3742815..b23aa8e8 100644 --- a/SleepLib/loader_plugins/prs1_loader.cpp +++ b/SleepLib/loader_plugins/prs1_loader.cpp @@ -1290,8 +1290,8 @@ void PRS1Loader::CalcRespiratoryRate(Session *session) flow=session->eventlist[CPAP_FlowRate][ws]; if (flow->count() > 5) { rr=new EventList(EVL_Event);//EVL_Waveform,1,0,0,0,60000); - ChannelID resp="RespRate"; - if (session->eventlist.contains(resp)) resp+="2"; + ChannelID resp="RespRate2"; + //if (session->eventlist.contains(resp)) resp+="2"; session->eventlist[resp].push_back(rr); filterFlow(flow,rr); }