Index: installer/src/installer-lib/test/test-installer-lib-sandbox.cpp |
=================================================================== |
--- a/installer/src/installer-lib/test/test-installer-lib-sandbox.cpp |
+++ b/installer/src/installer-lib/test/test-installer-lib-sandbox.cpp |
@@ -45,7 +45,7 @@ |
{ |
session.Log( "log_all_window_handles" ) ; |
log_single_window_handle lp( session ) ; |
- enumerate_windows( lp ) ; |
+ EnumerateWindows( lp ) ; |
} |
//------------------------------------------------------- |
@@ -65,8 +65,8 @@ |
bool operator()( HWND window ) |
{ |
- DWORD pid = creator_process( window ) ; |
- if ( pc.contains( pid ) ) |
+ DWORD pid = CreatorProcess( window ) ; |
+ if ( pc.Contains( pid ) ) |
{ |
std::stringstream s ; |
s << "Window handle 0x" << std::hex << window ; |
@@ -83,7 +83,7 @@ |
ProcessSnapshot snapshot ; |
ProcessCloser iec(snapshot, IE_names) ; |
log_single_window_handle_only_if_IE lp( session, iec ) ; |
- enumerate_windows( lp ) ; |
+ EnumerateWindows( lp ) ; |
} |
//------------------------------------------------------- |
@@ -95,7 +95,7 @@ |
const wchar_t * IE_names[] = { L"IExplore.exe", L"AdblockPlusEngine.exe" } ; |
ProcessSnapshot snapshot ; |
ProcessCloser iec( snapshot, IE_names) ; |
- iec.iterate_our_windows( log_single_window_handle( session ) ) ; |
+ iec.IterateOurWindows( log_single_window_handle( session ) ) ; |
} |
//------------------------------------------------------- |