From 33f81fc7d06c8cb86bc6f9afa7f1e41a81773ef8 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sat, 11 Feb 2006 16:56:40 +0000 Subject: [PATCH] use wxClockMillis_t to fix wxUSE_LONGLONG=0 compilation git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37498 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/html/htmlwin.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/wx/html/htmlwin.h b/include/wx/html/htmlwin.h index 1fc783eb87..2561691e36 100644 --- a/include/wx/html/htmlwin.h +++ b/include/wx/html/htmlwin.h @@ -16,6 +16,7 @@ #include "wx/window.h" #include "wx/scrolwin.h" #include "wx/config.h" +#include "wx/stopwatch.h" #include "wx/html/winpars.h" #include "wx/html/htmlcell.h" #include "wx/filesys.h" @@ -310,7 +311,8 @@ protected: #if wxUSE_CLIPBOARD // time of the last doubleclick event, used to detect tripleclicks // (tripleclicks are used to select whole line): - wxLongLong m_lastDoubleClick; + wxMilliClock_t m_lastDoubleClick; +#endif // wxUSE_LONGLONG/!wxUSE_LONGLONG // helper class to automatically scroll the window if the user is selecting // text and the mouse leaves wxHtmlWindow: -- 2.45.2