Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: installer/src/installer-lib/session.cpp

Issue 5219280069066752: Issue #1186 - Change names that appear in the custom action (Closed)
Patch Set: Created Jan. 4, 2015, 7 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: installer/src/installer-lib/session.cpp
===================================================================
--- a/installer/src/installer-lib/session.cpp
+++ b/installer/src/installer-lib/session.cpp
@@ -31,12 +31,12 @@
{
log_prefix_w.assign( name.begin(), name.end() ) ;
log_prefix_w += L": " ;
- log_noexcept( "Entering custom action" ) ;
+ LogNoexcept( "Entering custom action" ) ;
}
Session::~Session()
{
- log_noexcept( "Exiting custom action" ) ;
+ LogNoexcept( "Exiting custom action" ) ;
}
/**
@@ -58,22 +58,22 @@
{}
} ;
-void Session::log( std::string message )
+void Session::Log( std::string message )
{
- write_message( Log_Message( log_prefix + message ) ) ;
+ WriteMessage( Log_Message( log_prefix + message ) ) ;
}
-void Session::log( std::wstring message )
+void Session::Log( std::wstring message )
{
- write_message( Log_Message( log_prefix_w + message ) ) ;
+ WriteMessage( Log_Message( log_prefix_w + message ) ) ;
}
-void Session::log_noexcept( std::string message )
+void Session::LogNoexcept( std::string message )
{
write_message_noexcept( Log_Message( log_prefix + message ) ) ;
}
-int Session::write_message( Message & m )
+int Session::WriteMessage( Message & m )
{
int x = write_message_noexcept( m ) ;
if ( x == -1 )
@@ -89,8 +89,8 @@
}
//-----------------------------------------------------------------------------------------
-// Immediate_Session
+// ImmediateSession
//-----------------------------------------------------------------------------------------
-Immediate_Session::Immediate_Session( MSIHANDLE handle, std::string name )
+ImmediateSession::ImmediateSession( MSIHANDLE handle, std::string name )
: Session( handle, name )
{}

Powered by Google App Engine
This is Rietveld