Changeset 32204 in webkit
- Timestamp:
- Apr 18, 2008, 5:47:27 AM (17 years ago)
- Location:
- trunk/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebCore/ChangeLog
r32202 r32204 1 2008-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 1 8 2008-04-18 Simon Hausmann <hausmann@webkit.org> 2 9 -
trunk/WebCore/page/PageGroup.cpp
r32020 r32204 119 119 LocalStorage* PageGroup::localStorage() 120 120 { 121 #if ENABLE(DATABASE) 121 122 if (!m_localStorage) 122 123 m_localStorage = LocalStorage::create(this); 123 124 #endif 125 124 126 return m_localStorage.get(); 125 127 }
Note:
See TracChangeset
for help on using the changeset viewer.