]> git.lyx.org Git - features.git/commitdiff
add missing config.h
authorLars Gullik Bjønnes <larsbj@gullik.org>
Tue, 6 May 2003 20:34:12 +0000 (20:34 +0000)
committerLars Gullik Bjønnes <larsbj@gullik.org>
Tue, 6 May 2003 20:34:12 +0000 (20:34 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6942 a592a061-630c-0410-9148-cb99ea01b6c8

src/graphics/LoaderQueue.C
src/support/forkedcallqueue.C

index eb9d12a0a59838df1a997e91cfc84ce32f1a6510..1647e472c60ecdb75b5e9b61b1f83ea23b7ba7e2 100644 (file)
@@ -8,6 +8,8 @@
  * Full author contact details are available in file CREDITS
  */
 
+#include <config.h>
+
 #include "LoaderQueue.h"
 
 #include "debug.h"
index 378de1af5ce9c52cd9266fea6b00c2e117804290..fe9606772a399844786a079b283fbece8e462663 100644 (file)
@@ -4,10 +4,12 @@
  * Licence details can be found in the file COPYING.
  *
  * \author Alfredo Braunstein (based on an idea from Angus Leeming)
- * 
+ *
  * Full author contact details are available in file CREDITS
  */
 
+#include <config.h>
+
 #include "forkedcallqueue.h"
 
 #include "debug.h"
@@ -44,7 +46,7 @@ void ForkedCallQueue::callNext()
        Process pro = callQueue_.front();
        callQueue_.pop();
        // Bind our chain caller
-       pro.second->connect(boost::bind(&ForkedCallQueue::callback, 
+       pro.second->connect(boost::bind(&ForkedCallQueue::callback,
                                         this, _1, _2));
        Forkedcall call;
        // If we fail to fork the process, then emit the signal
@@ -67,7 +69,7 @@ void ForkedCallQueue::callback(pid_t, int)
 ForkedCallQueue::ForkedCallQueue() : running_(false)
 {}
 
-       
+
 void ForkedCallQueue::startCaller()
 {
        lyxerr[Debug::GRAPHICS] << "ForkedCallQueue: waking up" << endl;
@@ -79,7 +81,7 @@ void ForkedCallQueue::startCaller()
 void ForkedCallQueue::stopCaller()
 {
        running_ = false ;
-       lyxerr[Debug::GRAPHICS] << "ForkedCallQueue: I'm going to sleep" 
+       lyxerr[Debug::GRAPHICS] << "ForkedCallQueue: I'm going to sleep"
                                << endl;
 }