Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(141)

Unified Diff: webkit/api/src/WebImageCG.cpp

Issue 155320: Fix custom cursors on Mac. Null and 0 turn out not to be opposites.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | webkit/glue/webcursor_mac.mm » ('j') | webkit/glue/webcursor_mac.mm » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/api/src/WebImageCG.cpp
===================================================================
--- webkit/api/src/WebImageCG.cpp (revision 20280)
+++ webkit/api/src/WebImageCG.cpp (working copy)
@@ -76,7 +76,7 @@
bool WebImage::isNull() const
{
- return m_imageRef != 0;
+ return m_imageRef == 0;
}
WebSize WebImage::size() const
« no previous file with comments | « no previous file | webkit/glue/webcursor_mac.mm » ('j') | webkit/glue/webcursor_mac.mm » ('J')

Powered by Google App Engine
This is Rietveld 408576698