| 40 | } |
| 41 | |
| 42 | bool CRecentDatabase::OnInitializeDatabase() |
| 43 | { |
| 44 | bool bRet = false; |
| 45 | bRet = CDatabase::OnInitializeDatabase(); |
| 46 | if(!bRet) return false; |
| 47 | |
| 48 | // Create icon table |
| 49 | bRet = m_IconDB.SetDatabase(GetDatabase(), m_pPara); |
| 50 | if(!bRet) return bRet; |
| 51 | bRet = m_FileDB.SetDatabase(GetDatabase(), m_pPara); |
| 52 | return bRet; |
| 53 | } |
| 54 | |
| 55 | bool CRecentDatabase::OnInitializeSqliteDatabase() |
| 56 | { |
nothing calls this directly
no test coverage detected