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

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

Issue 5992177905696768: Issue #1186 - Rename symbols defined in 'installer-lib' (Closed)
Patch Set: fixed issues; rebased; new fixes from rebase Created June 19, 2015, 4:09 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
« no previous file with comments | « installer/src/installer-lib/DLL.h ('k') | installer/src/installer-lib/custom-i18n.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: installer/src/installer-lib/DLL.cpp
===================================================================
--- a/installer/src/installer-lib/DLL.cpp
+++ b/installer/src/installer-lib/DLL.cpp
@@ -1,12 +1,12 @@
/**
-* \file abp_ca.cpp Top-level source for custom actions. Includes DLL initialization.
+* \file DLL.cpp Top-level source for custom actions. Includes DLL initialization.
*/
#include "DLL.h"
#include <stdexcept>
std::shared_ptr< DllModule > DllModule::singleton = 0 ;
-DllModule & DllModule::module()
+DllModule & DllModule::Module()
{
if ( singleton )
{
@@ -45,9 +45,9 @@
{
}
-std::wstring DllModule::name()
+std::wstring DllModule::Name()
{
- if ( _name )
- return *_name ;
+ if ( name )
+ return *name ;
throw std::runtime_error( "Not yet implemented" );
}
« no previous file with comments | « installer/src/installer-lib/DLL.h ('k') | installer/src/installer-lib/custom-i18n.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld