git-svn-id: https://svn.webkit.org/repository/webkit/trunk@28479
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2007-12-05 Mark Rowe <mrowe@apple.com>
+
+ Qt Windows build fix. Include the time-related headers in the correct place.
+
+ * kjs/JSGlobalObject.cpp:
+ * kjs/interpreter.cpp:
+
2007-12-05 Darin Adler <darin@apple.com>
Not reviewed; just undoing a previous commit.
#include "object_object.h"
#include "regexp_object.h"
#include "string_object.h"
+
+#if HAVE(SYS_TIME_H)
#include <sys/time.h>
+#endif
+
+#if PLATFORM(WIN_OS)
+#include <windows.h>
+#endif
+
+#if PLATFORM(QT)
+#include <QDateTime>
+#endif
namespace KJS {
#include <stdio.h>
#include <wtf/Assertions.h>
-#if HAVE(SYS_TIME_H)
-#include <sys/time.h>
-#endif
-
-#if PLATFORM(WIN_OS)
-#include <windows.h>
-#endif
-
-#if PLATFORM(QT)
-#include <QDateTime>
-#endif
-
namespace KJS {
Completion Interpreter::checkSyntax(ExecState* exec, const UString& sourceURL, int startingLineNumber, const UString& code)