TBBoxx CWFs
authorChris Tallon <chris@vomp.tv>
Fri, 10 Apr 2020 16:13:02 +0000 (17:13 +0100)
committerChris Tallon <chris@vomp.tv>
Fri, 10 Apr 2020 16:13:02 +0000 (17:13 +0100)
inputman.cc
log.cc
udp4.h
vrecordinglist.h
vrecordinglistadvanced.h
vrecordinglistclassic.h

index 25a81a1785c52a59a21edfac4f8d562683cbc93f..a3ce116308c6cd6284bce76de607a8f8445a1633 100644 (file)
@@ -59,7 +59,7 @@ bool InputMan::init()
   i1 = inputLinux->init();
   if (!i1) { delete inputLinux; inputLinux = NULL; }
 
-  // FIXME enable modules by new config system
+  // FIXME enable modules by new config system NCONFIG
 
 //  inputCEC = new InputCEC();
 //  i2 = inputCEC->init();
diff --git a/log.cc b/log.cc
index 31db7702ffac9a9db7c7eac628a874c52c610235..fbb767f5f116ced273ba5d73ae46def1348956bc 100644 (file)
--- a/log.cc
+++ b/log.cc
@@ -89,9 +89,11 @@ int Log::init(int startLogLevel, const char* fileName, int tenabled)
   initted = 1;
   logLevel = startLogLevel;
   enabled = tenabled;
-  logfile = fopen(fileName, "a");
+
+  // FIXME fix this with NCONFIG
+//  logfile = fopen(fileName, "a");
 //  logfile = fopen(stdout, "a");
-  //logfile = stdout;
+  logfile = stdout;
 //  logfile = fopen("/log", "a");
 
   if (logfile) return 1;
diff --git a/udp4.h b/udp4.h
index 783b596abe42eb148b748b4a82030a77544be899..f6fb5f67b96f8fa1d08d6b9a6fffc7d87fc6dbaa 100644 (file)
--- a/udp4.h
+++ b/udp4.h
@@ -17,8 +17,8 @@
     along with VOMP.  If not, see <https://www.gnu.org/licenses/>.
 */
 
-#ifndef DSOCK_H
-#define DSOCK_H
+#ifndef UDP4_H
+#define UDP4_H
 
 #ifdef WIN32
   #include <winsock2.h>
index 67659ddb711054b1b75c89c6f2582792d5e1a5c8..21411e9e89a471de33836f998f9c450890d79a37 100644 (file)
@@ -42,13 +42,8 @@ class VRecordingList : public TBBoxx
     VRecordingList();
     virtual ~VRecordingList();
 
-/*
-#ifndef WIN32
-    using TBBoxx::draw; // Signal the compiler we are intentionally overriding the draw() virtual with different args
-#endif
-*/
-
-    virtual void draw(bool doIndexPop = false)=0;
+    virtual void draw() { draw(false); }
+    virtual void draw(bool doIndexPop)=0;
 
     int handleCommand(int command);
     void processMessage(Message* m);
index d629af102c4026add9cbde0d15f12a63b076ef66..db391344a21d4eedb763e54828cc4ab9c4852227 100644 (file)
@@ -30,13 +30,8 @@ class VRecordingListAdvanced : public VRecordingList
     VRecordingListAdvanced();
     virtual ~VRecordingListAdvanced();
 
-/*
-#ifndef WIN32
-    using TBBoxx::draw; // Signal the compiler we are intentionally overriding the draw() virtual with different args
-#endif
-*/
-
-    void draw(bool doIndexPop = false);
+    void draw() { draw(false); }
+    void draw(bool doIndexPop);
 
     bool load();
     void drawData(bool doIndexPop = false);
index f917b0f70ebea488f0650847f6e357702bacfc74..aa3b86f200f7ba9d14ddc4ce6b0e3212a582913f 100644 (file)
@@ -28,13 +28,8 @@ class VRecordingListClassic : public VRecordingList
     VRecordingListClassic();
     virtual ~VRecordingListClassic();
 
-/*
-#ifndef WIN32
-    using TBBoxx::draw; // Signal the compiler we are intentionally overriding the draw() virtual with different args
-#endif
-*/
-
-    void draw(bool doIndexPop = false);
+    void draw() { draw(false); }
+    void draw(bool doIndexPop);
 
     bool load();
     void drawData(bool doIndexPop = false);