Index: /trunk/FACT++/src/WindowLog.cc
===================================================================
--- /trunk/FACT++/src/WindowLog.cc	(revision 17228)
+++ /trunk/FACT++/src/WindowLog.cc	(revision 17229)
@@ -137,5 +137,5 @@
 }
 
-void WindowLog::WriteFile(const string &sout)
+bool WindowLog::WriteFile(const string &sout)
 {
     fMuxFile.lock();
@@ -143,4 +143,6 @@
     fLogFile.flush();
     fMuxFile.unlock();
+
+    return true;
 }
 
Index: /trunk/FACT++/src/WindowLog.h
===================================================================
--- /trunk/FACT++/src/WindowLog.h	(revision 17228)
+++ /trunk/FACT++/src/WindowLog.h	(revision 17229)
@@ -9,5 +9,5 @@
 #include <ncurses.h> // A_NORMAL etc
 
-#include "queue.h"
+#include "../externals/Queue.h"
 
 /// Stream manipulators to change the color of a WindowLog stream
@@ -83,5 +83,5 @@
     void AddColor(int m);
 
-    void WriteFile(const std::string &);
+    bool WriteFile(const std::string &);
     void WriteBuffer();
 
