Index: trunk/BNC/src/combination/bncbiassnx.cpp
===================================================================
--- trunk/BNC/src/combination/bncbiassnx.cpp	(revision 10245)
+++ trunk/BNC/src/combination/bncbiassnx.cpp	(revision 10275)
@@ -119,8 +119,8 @@
     else if (line.indexOf("BIAS_MODE") == 1) {
        if      (line.contains("ABSOLUTE")) {
-         _type = ABSOLUTE;
+         _type = ABS;
        }
        else if (line.contains("RELATIVE")) {
-         _type = RELATIVE;
+         _type = REL;
        }
     }
@@ -176,5 +176,5 @@
   inFile.close();
 
-  if (_type == ABSOLUTE) {
+  if (_type == ABS) {
     getDsbFromOsb();
   }
Index: trunk/BNC/src/combination/bncbiassnx.h
===================================================================
--- trunk/BNC/src/combination/bncbiassnx.h	(revision 10245)
+++ trunk/BNC/src/combination/bncbiassnx.h	(revision 10275)
@@ -65,5 +65,5 @@
 
  private:
-  enum e_type {ABSOLUTE, RELATIVE};
+  enum e_type {ABS, REL};
   void clear();
   t_irc bncTimeFromSinex(QString snxStr, bncTime& time);
Index: trunk/BNC/src/combination/bnccomb.cpp
===================================================================
--- trunk/BNC/src/combination/bnccomb.cpp	(revision 10245)
+++ trunk/BNC/src/combination/bnccomb.cpp	(revision 10275)
@@ -311,5 +311,9 @@
 
   _running = false;
+#ifndef WIN32
   sleep(2);
+#else
+  Sleep(2000);
+#endif
 
   QListIterator<cmbAC*> icAC(_ACs);
Index: trunk/BNC/src/combination/bnccomb.h
===================================================================
--- trunk/BNC/src/combination/bnccomb.h	(revision 10245)
+++ trunk/BNC/src/combination/bnccomb.h	(revision 10275)
@@ -5,5 +5,9 @@
 #include <fstream>
 #include <iostream>
+#ifndef WIN32
 #include <unistd.h>
+#else
+#include <windows.h>
+#endif
 #include <map>
 #include <newmat.h>
