Changeset 39200 in webkit
- Timestamp:
- Dec 11, 2008, 2:03:28 AM (16 years ago)
- Location:
- trunk/WebCore
- Files:
-
- 3 edited
-
ChangeLog (modified) (1 diff)
-
platform/qt/RenderThemeQt.cpp (modified) (1 diff)
-
platform/qt/RenderThemeQt.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebCore/ChangeLog
r39199 r39200 1 2008-12-11 Holger Hans Peter Freyther <zecke@selfish.org> 2 3 Reviewed and implemented with Tor Arne Vestbø. 4 5 Reimplement RenderTheme::caretBlinkInterval for Qt. 6 7 The QApplication::cursorFlashTime is in milliseconds and describes 8 the whole cycle while WebCore expects half a cycle. 9 10 * platform/qt/RenderThemeQt.cpp: 11 (WebCore::RenderThemeQt::caretBlinkInterval): 12 * platform/qt/RenderThemeQt.h: 13 1 14 2008-12-09 Trenton Schulz <trenton.schulz@nokia.com> 2 15 -
trunk/WebCore/platform/qt/RenderThemeQt.cpp
r38789 r39200 943 943 } 944 944 945 double RenderThemeQt::caretBlinkInterval() const 946 { 947 return QApplication::cursorFlashTime() / 1000.0 / 2.0; 948 } 949 945 950 } 946 951 -
trunk/WebCore/platform/qt/RenderThemeQt.h
r38788 r39200 72 72 73 73 virtual void adjustSliderThumbSize(RenderObject*) const; 74 75 virtual double caretBlinkInterval() const; 74 76 75 77 protected:
Note:
See TracChangeset
for help on using the changeset viewer.