Index: installer/src/installer-lib/process.cpp |
=================================================================== |
--- a/installer/src/installer-lib/process.cpp |
+++ b/installer/src/installer-lib/process.cpp |
@@ -208,7 +208,7 @@ |
} ; |
//------------------------------------------------------- |
-// Process_Closer |
+// ProcessCloser |
//------------------------------------------------------- |
/** |
* Shut down all the processes in the pid_list. |
@@ -227,12 +227,12 @@ |
* - MSDN [WM_QUERYENDSESSION message](http://msdn.microsoft.com/en-us/library/windows/desktop/aa376890%28v=vs.85%29.aspx) |
* - MSDN [WM_ENDSESSION message](http://msdn.microsoft.com/en-us/library/windows/desktop/aa376889%28v=vs.85%29.aspx) |
*/ |
-bool Process_Closer::shut_down() |
+bool ProcessCloser::shutDown() |
{ |
/* |
* If we're not running, we don't need to shut down. |
*/ |
- if ( ! is_running() ) |
+ if ( ! IsRunning() ) |
{ |
return true ; |
} |
@@ -303,7 +303,7 @@ |
{ |
std::this_thread::sleep_for( std::chrono::milliseconds( 100 ) ) ; |
refresh() ; |
- if ( ! is_running() ) |
+ if ( ! IsRunning() ) |
{ |
return true ; |
} |