Skip to content

Commit c3c20fb

Browse files
committed
removed recording_name and recording_file in StatusMonitor::Recording
1 parent 28533c1 commit c3c20fb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

statusmonitor.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -188,12 +188,12 @@ void StatusMonitor::Recording(const cDevice *Device, const char *Name, const cha
188188
{
189189
if (On) {
190190
record = true;
191-
if(Name != NULL) recording_name = std::string(Name); else recording_name = "";
192-
if(FileName != NULL) recording_file = std::string(FileName); else recording_file = "";
191+
// if(Name != NULL) recording_name = std::string(Name); else recording_name = "";
192+
// if(FileName != NULL) recording_file = std::string(FileName); else recording_file = "";
193193
} else {
194194
record = false;
195-
recording_name = "";
196-
recording_file = "";
195+
// recording_name = "";
196+
// recording_file = "";
197197
}
198198
}
199199

0 commit comments

Comments
 (0)