⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 94013 in webkit


Ignore:
Timestamp:
Aug 29, 2011, 1:58:31 PM (15 years ago)
Author:
Martin Robinson
Message:

Merging r86116

Location:
releases/WebKitGTK/webkit-1.4/Source/WebKit/gtk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • releases/WebKitGTK/webkit-1.4/Source/WebKit/gtk/ChangeLog

    r94012 r94013  
     12011-08-29  Xan Lopez  <xlopez@igalia.com>
     2
     3        Unreviewed build fix..
     4
     5        Fix GTK+3.x build.
     6
     7        * webkit/webkitwebview.cpp:
     8        (getHorizontalAdjustment): the adjustment is in
     9        adjustmentWatcher() now.
     10        (getVerticalAdjustment): ditto.
     11
    1122011-08-29  Martin Robinson  <mrobinson@igalia.com>
    213
  • releases/WebKitGTK/webkit-1.4/Source/WebKit/gtk/webkit/webkitwebview.cpp

    r94012 r94013  
    483483    Page* page = core(webView);
    484484    if (page)
    485         return static_cast<WebKit::ChromeClient*>(page->chrome()->client())->horizontalAdjustment();
     485        return static_cast<WebKit::ChromeClientGtk*>(page->chrome()->client())->adjustmentWatcher()->horizontalAdjustment();
    486486    return 0;
    487487}
     
    491491    Page* page = core(webView);
    492492    if (page)
    493         return static_cast<WebKit::ChromeClient*>(page->chrome()->client())->verticalAdjustment();
     493        return static_cast<WebKit::ChromeClient*>(page->chrome()->client())->adjustmentWatcher()->verticalAdjustment();
    494494    return 0;
    495495}
Note: See TracChangeset for help on using the changeset viewer.