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

Unified Diff: installer/src/installer-lib/database.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/database.cpp
===================================================================
--- a/installer/src/installer-lib/database.cpp
+++ b/installer/src/installer-lib/database.cpp
@@ -24,17 +24,17 @@
}
//-----------------------------------------------------------------------------------------
-// Installation_Database
+// InstallationDatabase
//-----------------------------------------------------------------------------------------
/**
-* Helper function for Installation_Database constructor.
+* Helper function for InstallationDatabase constructor.
*
* \par Resource Allocator
* Return value of this function, a handle, must be released in order to avoid a resource leak.
* Passing it as an argument to the Database constructor is adequate.
*/
-msi_handle get_active_database( Immediate_Session & session )
+msi_handle get_active_database( ImmediateSession & session )
{
MSIHANDLE h( MsiGetActiveDatabase( session.handle ) ) ;
if ( h == 0 )
@@ -48,7 +48,7 @@
* \par Implementation Notes
* The only thing this constructor needs to do is to initialize the base class.
*/
-Installation_Database::Installation_Database( Immediate_Session & session )
+InstallationDatabase::InstallationDatabase( ImmediateSession & session )
: Database( get_active_database( session ) )
{
// empty body

Powered by Google App Engine
This is Rietveld