* platform/qt/CursorQt.cpp:
(WebCore::verticalTextCursor): Added. Just returns pointer cursor.
(WebCore::cellCursor): Ditto.
(WebCore::contextMenuCursor): Ditto.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@17731
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2006-11-11 Darin Adler <darin@apple.com>
+
+ - attempt to fix Qt build
+
+ * platform/qt/CursorQt.cpp:
+ (WebCore::verticalTextCursor): Added. Just returns pointer cursor.
+ (WebCore::cellCursor): Ditto.
+ (WebCore::contextMenuCursor): Ditto.
+
2006-11-11 Rob Buis <buis@kde.org>
Reviewed by hyatt.
return Cursors::self()->SplitVCursor;
}
+const Cursor& verticalTextCursor()
+{
+ return Cursors::self()->PointerCursor;
+}
+
+const Cursor& cellCursor()
+{
+ return Cursors::self()->PointerCursor;
+}
+
+const Cursor& contextMenuCursor()
+{
+ return Cursors::self()->PointerCursor;
+}
+
}
// vim: ts=4 sw=4 et