Changeset 32972 in webkit


Ignore:
Timestamp:
May 8, 2008 12:45:01 AM (16 years ago)
Author:
Simon Hausmann
Message:

2008-05-08 Simon Hausmann <Simon Hausmann>

Fix the Qt and Wx build when compiling without offline app support.

Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r32968 r32972  
     12008-05-08  Simon Hausmann  <hausmann@webkit.org>
     2
     3        Fix the Qt and Wx build when compiling without offline app support.
     4
     5        * loader/FrameLoader.cpp:
     6        (WebCore::FrameLoader::canCachePage):
     7
    182008-05-07  Sam Weinig  <sam@webkit.org>
    29
  • trunk/WebCore/loader/FrameLoader.cpp

    r32964 r32972  
    18941894        && !m_documentLoader->isLoadingInAPISense()
    18951895        && !m_documentLoader->isStopping()
     1896#if ENABLE(OFFLINE_WEB_APPLICATIONS)
    18961897        // FIXME: We should investigating caching pages that have an associated
    18971898        // application cache. <rdar://problem/5917899> tracks that work.
    18981899        && !m_documentLoader->applicationCache()
    1899         && !m_documentLoader->candidateApplicationCacheGroup();
     1900        && !m_documentLoader->candidateApplicationCacheGroup()
     1901#endif
     1902        ;
    19001903}
    19011904
Note: See TracChangeset for help on using the changeset viewer.