Changeset 44
- Timestamp:
- 10/12/2007 9:17:49 AM (6 years ago)
- Location:
- trunk
- Files:
-
- 9 edited
-
EraserDll/Eraser.cpp (modified) (1 diff)
-
EraserDll/EraserDll.vcproj (modified) (4 diffs)
-
EraserUI/FileTreeCtrl.cpp (modified) (1 diff)
-
EraserUI/FlatHeaderCtrl.cpp (modified) (1 diff)
-
EraserUI/ProgressBar.cpp (modified) (1 diff)
-
HotKeyListCtrl.cpp (modified) (1 diff)
-
Launcher/Launcher.vcproj (modified) (4 diffs)
-
SchedulerView.cpp (modified) (1 diff)
-
shared/key.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/EraserDll/Eraser.cpp
r43 r44 1671 1671 CString strTemp; 1672 1672 CString strUnit; 1673 E_UINT32 uIndex , uSize;1673 E_UINT32 uIndex; 1674 1674 E_UINT64 uTemp; 1675 INT_PTR uSize; 1675 1676 double dTime; 1676 1677 CReportDialog rd; -
trunk/EraserDll/EraserDll.vcproj
r40 r44 66 66 SuppressStartupBanner="true" 67 67 DebugInformationFormat="4" 68 DisableSpecificWarnings="4251" 68 69 /> 69 70 <Tool … … 160 161 SuppressStartupBanner="true" 161 162 DebugInformationFormat="3" 163 DisableSpecificWarnings="4251" 162 164 /> 163 165 <Tool … … 254 256 SuppressStartupBanner="true" 255 257 DebugInformationFormat="3" 258 DisableSpecificWarnings="4251" 256 259 /> 257 260 <Tool … … 349 352 SuppressStartupBanner="true" 350 353 DebugInformationFormat="3" 354 DisableSpecificWarnings="4251" 351 355 /> 352 356 <Tool -
trunk/EraserUI/FileTreeCtrl.cpp
r27 r44 3194 3194 3195 3195 //Shrink the prev array if necessary 3196 intnCurItems = m_PrevItems.GetSize();3196 INT_PTR nCurItems = m_PrevItems.GetSize(); 3197 3197 if (nCurItems > m_nMaxHistory) 3198 3198 { -
trunk/EraserUI/FlatHeaderCtrl.cpp
r27 r44 814 814 } 815 815 816 return CHeaderCtrl::OnNcHitTest(point);816 return (UINT)CHeaderCtrl::OnNcHitTest(point); 817 817 } 818 818 -
trunk/EraserUI/ProgressBar.cpp
r27 r44 176 176 return CLR_DEFAULT; 177 177 178 return SendMessage(PBM_SETBARCOLOR, 0, (LPARAM) clrBar);178 return (COLORREF)SendMessage(PBM_SETBARCOLOR, 0, (LPARAM) clrBar); 179 179 #else 180 180 UNUSED(clrBar); -
trunk/HotKeyListCtrl.cpp
r29 r44 49 49 50 50 51 void CHotKeyListCtrl::OnLvnItemActivate(NMHDR * pNMHDR, LRESULT *pResult)51 void CHotKeyListCtrl::OnLvnItemActivate(NMHDR * /*pNMHDR*/, LRESULT *pResult) 52 52 { 53 53 // TODO: Add your control notification handler code here -
trunk/Launcher/Launcher.vcproj
r41 r44 591 591 <Tool 592 592 Name="VCCLCompilerTool" 593 Optimization="0"594 593 PreprocessorDefinitions="" 595 594 BasicRuntimeChecks="3" … … 602 601 <Tool 603 602 Name="VCCLCompilerTool" 604 Optimization="0"605 603 PreprocessorDefinitions="" 606 604 BasicRuntimeChecks="3" … … 613 611 <Tool 614 612 Name="VCCLCompilerTool" 615 Optimization="1"616 613 PreprocessorDefinitions="" 617 614 UsePrecompiledHeader="1" … … 623 620 <Tool 624 621 Name="VCCLCompilerTool" 625 Optimization="1"626 622 PreprocessorDefinitions="" 627 623 UsePrecompiledHeader="1" -
trunk/SchedulerView.cpp
r43 r44 1224 1224 CListCtrl& lc = GetListCtrl(); 1225 1225 int iCount = lc.GetItemCount(); 1226 intiIndex = 0;1226 DWORD_PTR iIndex = 0; 1227 1227 CScheduleItem *psiItem = 0; 1228 1228 CString str; -
trunk/shared/key.cpp
r32 r44 45 45 if (m_hKey != NULL) 46 46 { 47 LONG lRes = RegCloseKey(m_hKey); 48 ASSERT(lRes == ERROR_SUCCESS); 47 VERIFY(RegCloseKey(m_hKey) == ERROR_SUCCESS); 49 48 m_hKey = NULL; 50 49 }
Note: See TracChangeset
for help on using the changeset viewer.
