Title: [91159] trunk/Source/WebKit2
- Revision
- 91159
- Author
- [email protected]
- Date
- 2011-07-16 17:46:03 -0700 (Sat, 16 Jul 2011)
Log Message
2011-07-16 Daniel Bates <[email protected]>
Attempt to fix the Qt Linux Release build after changeset <http://trac.webkit.org/changeset/91097>
(https://bugs.webkit.org/show_bug.cgi?id=64615).
* UIProcess/qt/QtWebPageProxy.cpp:
(QtWebPageProxy::setCursorHiddenUntilMouseMoves): Added stub method.
* UIProcess/qt/QtWebPageProxy.h:
Modified Paths
Diff
Modified: trunk/Source/WebKit2/ChangeLog (91158 => 91159)
--- trunk/Source/WebKit2/ChangeLog 2011-07-17 00:33:34 UTC (rev 91158)
+++ trunk/Source/WebKit2/ChangeLog 2011-07-17 00:46:03 UTC (rev 91159)
@@ -1,3 +1,12 @@
+2011-07-16 Daniel Bates <[email protected]>
+
+ Attempt to fix the Qt Linux Release build after changeset <http://trac.webkit.org/changeset/91097>
+ (https://bugs.webkit.org/show_bug.cgi?id=64615).
+
+ * UIProcess/qt/QtWebPageProxy.cpp:
+ (QtWebPageProxy::setCursorHiddenUntilMouseMoves): Added stub method.
+ * UIProcess/qt/QtWebPageProxy.h:
+
2011-07-15 Pratik Solanki <[email protected]>
Part of https://bugs.webkit.org/show_bug.cgi?id=63674
Modified: trunk/Source/WebKit2/UIProcess/qt/QtWebPageProxy.cpp (91158 => 91159)
--- trunk/Source/WebKit2/UIProcess/qt/QtWebPageProxy.cpp 2011-07-17 00:33:34 UTC (rev 91158)
+++ trunk/Source/WebKit2/UIProcess/qt/QtWebPageProxy.cpp 2011-07-17 00:46:03 UTC (rev 91159)
@@ -265,6 +265,11 @@
m_viewInterface->didChangeCursor(*cursor.platformCursor());
}
+void QtWebPageProxy::setCursorHiddenUntilMouseMoves(bool hiddenUntilMouseMoves)
+{
+ notImplemented();
+}
+
void QtWebPageProxy::setViewNeedsDisplay(const WebCore::IntRect& rect)
{
m_viewInterface->setViewNeedsDisplay(QRect(rect));
Modified: trunk/Source/WebKit2/UIProcess/qt/QtWebPageProxy.h (91158 => 91159)
--- trunk/Source/WebKit2/UIProcess/qt/QtWebPageProxy.h 2011-07-17 00:33:34 UTC (rev 91158)
+++ trunk/Source/WebKit2/UIProcess/qt/QtWebPageProxy.h 2011-07-17 00:46:03 UTC (rev 91159)
@@ -111,6 +111,7 @@
virtual void startDrag(const WebCore::DragData&, PassRefPtr<ShareableBitmap> dragImage);
virtual void setCursor(const WebCore::Cursor&);
+ virtual void setCursorHiddenUntilMouseMoves(bool hiddenUntilMouseMoves);
virtual void toolTipChanged(const WTF::String&, const WTF::String&);
virtual void registerEditCommand(PassRefPtr<WebKit::WebEditCommandProxy>, WebKit::WebPageProxy::UndoOrRedo);
virtual void clearAllEditCommands();
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes