Title: [161080] trunk/Source/WebCore
Revision
161080
Author
[email protected]
Date
2013-12-25 18:57:54 -0800 (Wed, 25 Dec 2013)

Log Message

[Nix] Fixing DragData::asFragment signature in DragDataNix.cpp
https://bugs.webkit.org/show_bug.cgi?id=126229

Reviewed by Daniel Bates.

* platform/nix/DragDataNix.cpp:
(WebCore::DragData::asFragment):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (161079 => 161080)


--- trunk/Source/WebCore/ChangeLog	2013-12-26 02:51:49 UTC (rev 161079)
+++ trunk/Source/WebCore/ChangeLog	2013-12-26 02:57:54 UTC (rev 161080)
@@ -1,3 +1,13 @@
+2013-12-25  Thiago de Barros Lacerda  <[email protected]>
+
+        [Nix] Fixing DragData::asFragment signature in DragDataNix.cpp
+        https://bugs.webkit.org/show_bug.cgi?id=126229
+
+        Reviewed by Daniel Bates.
+
+        * platform/nix/DragDataNix.cpp:
+        (WebCore::DragData::asFragment):
+
 2013-12-25  Commit Queue  <[email protected]>
 
         Unreviewed, rolling out r161033 and r161074.

Modified: trunk/Source/WebCore/platform/nix/DragDataNix.cpp (161079 => 161080)


--- trunk/Source/WebCore/platform/nix/DragDataNix.cpp	2013-12-26 02:51:49 UTC (rev 161079)
+++ trunk/Source/WebCore/platform/nix/DragDataNix.cpp	2013-12-26 02:57:54 UTC (rev 161080)
@@ -85,9 +85,9 @@
     return String();
 }
 
-PassRefPtr<DocumentFragment> DragData::asFragment(Frame*, PassRefPtr<Range>, bool, bool&) const
+PassRefPtr<DocumentFragment> DragData::asFragment(Frame*, Range&, bool, bool&) const
 {
-    return 0;
+    return nullptr;
 }
 
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to