Changeset 415
- Timestamp:
- 07/24/08 17:18:59 (4 months ago)
- Files:
-
- trunk/BAL/ChangeLogOWB (modified) (1 diff)
- trunk/BAL/WKAL/Concretizations/Fonts/Freetype/BCSimpleFontDataFreetype.cpp (modified) (1 diff)
- trunk/WebKit/ChangeLogOWB (modified) (1 diff)
- trunk/WebKit/OrigynWebBrowser/Api/WebView.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/BAL/ChangeLogOWB
r411 r415 1 2008-07-24 Olivier DOLE <odole@pleyo.com> 2 3 Reviewed by Sebastien Roret. 4 Re-enable some code in platformDestroy 5 6 * WKAL/Concretizations/Fonts/Freetype/BCSimpleFontDataFreetype.cpp: 7 (WKAL::SimpleFontData::platformDestroy): 8 1 9 2008-07-22 Olivier DOLE <odole@pleyo.com> 2 10 trunk/BAL/WKAL/Concretizations/Fonts/Freetype/BCSimpleFontDataFreetype.cpp
r414 r415 64 64 void SimpleFontData::platformDestroy() 65 65 { 66 /*if (m_font.m_pattern && ((FcPattern*)-1 != m_font.m_pattern)) {66 if (m_font.m_pattern && ((FcPattern*)-1 != m_font.m_pattern)) { 67 67 FcPatternDestroy(m_font.m_pattern); 68 68 m_font.m_pattern = 0; 69 } */69 } 70 70 if (m_smallCapsFontData) 71 71 delete m_smallCapsFontData; trunk/WebKit/ChangeLogOWB
r413 r415 1 2008-07-24 Olivier DOLE <odole@pleyo.com> 2 3 Reviewed by Sebastien Roret. 4 Fix cachedPage leak. 5 Compute memSize available in setCacheModel(). 6 7 * OrigynWebBrowser/Api/WebView.cpp: 8 (WebView::setCacheModel): 9 (WebView::close): 10 1 11 2008-07-23 Olivier DOLE <odole@pleyo.com> 2 12 trunk/WebKit/OrigynWebBrowser/Api/WebView.cpp
r412 r415 105 105 #include DEEPSEE_INCLUDE 106 106 107 #include <sys/sysinfo.h> 108 107 109 #if PLATFORM(AMIGAOS4) 108 110 #include <intuition/intuition.h> … … 301 303 return; 302 304 303 //TODO : Calcul the next values305 //TODO : Calcul the next values 304 306 unsigned long long memSize = 256; 305 307 unsigned long long diskFreeSize = 4096; 308 309 #if !PLATFORM(AMIGAOS4) 310 struct sysinfo info; 311 memset(&info, 0, sizeof(info)); 312 if (sysinfo(&info) == 0) 313 memSize = info.totalram * info.mem_unit / (1024 * 1024); 314 #endif 306 315 307 316 unsigned cacheTotalCapacity = 0; … … 462 471 m_didClose = true; 463 472 473 //Purge page cache 474 //The easiest way to do that is to disable page cache 475 if (m_preferences->usesPageCache()) 476 m_page->settings()->setUsesPageCache(false); 477 464 478 removeFromAllWebViewsSet(); 465 479
