[sword-cvs] sword/src/frontend swlog.cpp,1.13,1.14
sword@www.crosswire.org
sword@www.crosswire.org
Mon, 22 Dec 2003 18:35:07 -0700
Update of /usr/local/cvsroot/sword/src/frontend
In directory www:/tmp/cvs-serv8850
Modified Files:
swlog.cpp
Log Message:
WinCE fixes
Index: swlog.cpp
===================================================================
RCS file: /usr/local/cvsroot/sword/src/frontend/swlog.cpp,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- swlog.cpp 27 Jan 2003 03:21:58 -0000 1.13
+++ swlog.cpp 23 Dec 2003 01:35:05 -0000 1.14
@@ -45,8 +45,10 @@
//#endif
va_end(argptr);
+#ifndef _WIN32_WCE
std::cerr << msg;
std::cerr << std::endl;
+#endif
}
}
@@ -69,8 +71,10 @@
//#endif
va_end(argptr);
+#ifndef _WIN32_WCE
std::cerr << msg;
std::cerr << std::endl;
+#endif
}
}
@@ -93,8 +97,10 @@
//#endif
va_end(argptr);
+#ifndef _WIN32_WCE
std::cout << msg;
std::cout << std::endl;
+#endif
}
}
@@ -117,8 +123,10 @@
//#endif
va_end(argptr);
+#ifndef _WIN32_WCE
std::cout << msg;
std::cout << std::endl;
+#endif
}
}