Changeset 142688 in webkit


Ignore:
Timestamp:
Feb 12, 2013 4:23:39 PM (11 years ago)
Author:
commit-queue@webkit.org
Message:

[EFL][WK2] Fix build warning after r142579
https://bugs.webkit.org/show_bug.cgi?id=109547

Patch by Jinwoo Song <jinwoo7.song@samsung.com> on 2013-02-12
Reviewed by Alexey Proskuryakov.

Use UNUSED_PARAM macro to fix -Wunused-parameter build warning.

  • UIProcess/efl/PageViewportControllerClientEfl.cpp:

(WebKit::PageViewportControllerClientEfl::didChangeContentsSize):

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r142678 r142688  
     12013-02-12  Jinwoo Song  <jinwoo7.song@samsung.com>
     2
     3        [EFL][WK2] Fix build warning after r142579
     4        https://bugs.webkit.org/show_bug.cgi?id=109547
     5
     6        Reviewed by Alexey Proskuryakov.
     7
     8        Use UNUSED_PARAM macro to fix -Wunused-parameter build warning.
     9
     10        * UIProcess/efl/PageViewportControllerClientEfl.cpp:
     11        (WebKit::PageViewportControllerClientEfl::didChangeContentsSize):
     12
    1132013-02-12  Christophe Dumez  <ch.dumez@sisa.samsung.com>
    214
  • trunk/Source/WebKit2/UIProcess/efl/PageViewportControllerClientEfl.cpp

    r142579 r142688  
    6969void PageViewportControllerClientEfl::didChangeContentsSize(const WebCore::IntSize& contentsSize)
    7070{
     71    UNUSED_PARAM(contentsSize);
    7172    m_view->scheduleUpdateDisplay();
    7273}
Note: See TracChangeset for help on using the changeset viewer.