summaryrefslogtreecommitdiffstats
path: root/WebCore/page/Chrome.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/page/Chrome.cpp')
-rw-r--r--WebCore/page/Chrome.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/WebCore/page/Chrome.cpp b/WebCore/page/Chrome.cpp
index f2e1d9d..0c66925 100644
--- a/WebCore/page/Chrome.cpp
+++ b/WebCore/page/Chrome.cpp
@@ -426,9 +426,9 @@ void Chrome::chooseIconForFiles(const Vector<String>& filenames, FileChooser* fi
m_client->chooseIconForFiles(filenames, fileChooser);
}
-bool Chrome::setCursor(PlatformCursorHandle cursor)
+void Chrome::setCursor(const Cursor& cursor)
{
- return m_client->setCursor(cursor);
+ m_client->setCursor(cursor);
}
#if ENABLE(NOTIFICATIONS)