Changeset 32204 in webkit


Ignore:
Timestamp:
Apr 18, 2008 5:47:27 AM (16 years ago)
Author:
Simon Hausmann
Message:

Fix the build without Database support (fixes the Qt/win build).

Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r32202 r32204  
     12008-04-18  Simon Hausmann  <hausmann@webkit.org>
     2
     3        Fix the build without Database support (fixes the Qt/win build).
     4
     5        * page/PageGroup.cpp:
     6        (WebCore::PageGroup::localStorage):
     7
    182008-04-18  Simon Hausmann  <hausmann@webkit.org>
    29
  • trunk/WebCore/page/PageGroup.cpp

    r32020 r32204  
    119119LocalStorage* PageGroup::localStorage()
    120120{
     121#if ENABLE(DATABASE)
    121122    if (!m_localStorage)
    122123        m_localStorage = LocalStorage::create(this);
    123        
     124#endif
     125
    124126    return m_localStorage.get();
    125127}
Note: See TracChangeset for help on using the changeset viewer.