diff options
Diffstat (limited to 'WebCore/platform/qt/PlatformMouseEventQt.cpp')
-rw-r--r-- | WebCore/platform/qt/PlatformMouseEventQt.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/WebCore/platform/qt/PlatformMouseEventQt.cpp b/WebCore/platform/qt/PlatformMouseEventQt.cpp index afc7452..ba7a4ad 100644 --- a/WebCore/platform/qt/PlatformMouseEventQt.cpp +++ b/WebCore/platform/qt/PlatformMouseEventQt.cpp @@ -28,7 +28,7 @@ #include "config.h" #include "PlatformMouseEvent.h" -#include "SystemTime.h" +#include <wtf/CurrentTime.h> #include <QMouseEvent> @@ -36,7 +36,7 @@ namespace WebCore { PlatformMouseEvent::PlatformMouseEvent(QInputEvent* event, int clickCount) { - m_timestamp = WebCore::currentTime(); + m_timestamp = WTF::currentTime(); QMouseEvent *me = 0; |