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

Unified Diff: installer/src/installer-lib/custom-i18n.h

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/custom-i18n.h
===================================================================
--- a/installer/src/installer-lib/custom-i18n.h
+++ b/installer/src/installer-lib/custom-i18n.h
@@ -17,17 +17,17 @@
* The WiX definition of that table is in the file "custom_i18n.wxi".
* Each custom action has the responsibility for defining its own rows within this table.
*/
-class custom_message_text
+class CustomMessageText
{
Database & db ;
const std::wstring component ;
public:
- custom_message_text( Database & db, const std::wstring component )
+ CustomMessageText( Database & db, const std::wstring component )
: db( db ), component( component )
{}
- std::wstring text( const std::wstring id )
+ std::wstring Text( const std::wstring id )
{
try {
View v( db, L"SELECT `content` FROM `AbpUIText` WHERE `component`=? and `id`=?" ) ;

Powered by Google App Engine
This is Rietveld