Title: [154934] trunk/Source/WebKit2
- Revision
- 154934
- Author
- [email protected]
- Date
- 2013-08-31 17:21:16 -0700 (Sat, 31 Aug 2013)
Log Message
warning: unused parameter point and area in EwkView.cpp:1390
https://bugs.webkit.org/show_bug.cgi?id=120545
Patch by Santosh Mahto <[email protected]> on 2013-08-31
Reviewed by Darin Adler.
* UIProcess/API/efl/EwkView.cpp:
(EwkView::didFindZoomableArea): Added UNUSED_PARAM.
Modified Paths
Diff
Modified: trunk/Source/WebKit2/ChangeLog (154933 => 154934)
--- trunk/Source/WebKit2/ChangeLog 2013-08-31 21:56:25 UTC (rev 154933)
+++ trunk/Source/WebKit2/ChangeLog 2013-09-01 00:21:16 UTC (rev 154934)
@@ -1,3 +1,13 @@
+2013-08-31 Santosh Mahto <[email protected]>
+
+ warning: unused parameter point and area in EwkView.cpp:1390
+ https://bugs.webkit.org/show_bug.cgi?id=120545
+
+ Reviewed by Darin Adler.
+
+ * UIProcess/API/efl/EwkView.cpp:
+ (EwkView::didFindZoomableArea): Added UNUSED_PARAM.
+
2013-08-31 Jae Hyun Park <[email protected]>
Remove unused variable in LayerTreeHost
Modified: trunk/Source/WebKit2/UIProcess/API/efl/EwkView.cpp (154933 => 154934)
--- trunk/Source/WebKit2/UIProcess/API/efl/EwkView.cpp 2013-08-31 21:56:25 UTC (rev 154933)
+++ trunk/Source/WebKit2/UIProcess/API/efl/EwkView.cpp 2013-09-01 00:21:16 UTC (rev 154934)
@@ -1390,6 +1390,8 @@
void EwkView::didFindZoomableArea(const WKPoint& point, const WKRect& area)
{
notImplemented();
+ UNUSED_PARAM(point);
+ UNUSED_PARAM(area);
}
Evas_Smart_Class EwkView::parentSmartClass = EVAS_SMART_CLASS_INIT_NULL;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes