Changeset 55667 in webkit


Ignore:
Timestamp:
Mar 8, 2010 9:26:12 AM (14 years ago)
Author:
dbates@webkit.org
Message:

2010-03-08 Daniel Bates <dbates@rim.com>

Unreviewed, build fix.

Attempt to fix the Windows builds by applying the corresponding change
made in bug #35763 <https://bugs.webkit.org/show_bug.cgi?id=35763>.

Location:
trunk/WebKit/win
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/win/ChangeLog

    r55652 r55667  
     12010-03-08  Daniel Bates  <dbates@rim.com>
     2
     3        Unreviewed, build fix.
     4
     5        Attempt to fix the Windows builds by applying the corresponding change
     6        made in bug #35763 <https://bugs.webkit.org/show_bug.cgi?id=35763>.
     7
     8        * WebView.cpp: Removed call to settings->setDatabasesEnabled since this
     9        setting no longer exists following changeset 55666 <http://trac.webkit.org/changeset/55666>.
     10        (WebView::notifyPreferencesChanged):
     11
    1122010-03-07  Mark Rowe  <mrowe@apple.com>
    213
  • trunk/WebKit/win/WebView.cpp

    r55592 r55667  
    46094609    settings->setOfflineWebApplicationCacheEnabled(enabled);
    46104610
    4611     hr = prefsPrivate->databasesEnabled(&enabled);
    4612     if (FAILED(hr))
    4613         return hr;
    4614     settings->setDatabasesEnabled(enabled);
    4615 
    46164611    hr = prefsPrivate->localStorageEnabled(&enabled);
    46174612    if (FAILED(hr))
Note: See TracChangeset for help on using the changeset viewer.