- Timestamp:
- 11/20/07 23:45:14 (1 year ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
Mulberry/trunk/Sources_Common/Application/Server/CServerBrowseCommon.cp
r19 r143 50 50 51 51 #include <typeinfo> 52 53 #if __dest_os == __win32_os54 // BUG in Metrowerks Compiler - need this specialization55 inline void allocator<CServerBrowse::SServerBrowseData>::deallocate(CServerBrowse::SServerBrowseData* p, size_t)56 {57 delete p;58 }59 #endif60 52 61 53 #pragma mark ____________________________Message Handling … … 1669 1661 1670 1662 // Adjust index to last remaining server 1671 index = ::min(index, (mShowFavourites ? CMailAccountManager::sMailAccountManager->FetchServerOffset() : 0) + 1);1663 index = min(index, (mShowFavourites ? CMailAccountManager::sMailAccountManager->FetchServerOffset() : 0) + 1); 1672 1664 1673 1665 // Remove this and all children … … 1819 1811 1820 1812 // Get its index (modified after delete) and remove its hierarchy 1821 index = ::min(index, FetchIndexOf(flatten));1813 index = min(index, FetchIndexOf(flatten)); 1822 1814 RemoveRows(1, index, false); 1823 1815