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: Created May 18, 2015, 11:40 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/DLL.cpp
===================================================================
--- a/installer/src/installer-lib/DLL.cpp
+++ b/installer/src/installer-lib/DLL.cpp
@@ -1,5 +1,5 @@
/**
-* \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>
@@ -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" );
}

Powered by Google App Engine
This is Rietveld