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

Side by Side Diff: installer/src/installer-lib/interaction.cpp

Issue 5219280069066752: Issue #1186 - Change names that appear in the custom action (Closed)
Patch Set: Created Oct. 2, 2014, 6:51 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
OLDNEW
1 /** 1 /**
2 * \file interaction.cpp Implementations of user interaction classes. 2 * \file interaction.cpp Implementations of user interaction classes.
3 */ 3 */
4 4
5 #include "interaction.h" 5 #include "interaction.h"
6 6
7 /* 7 /*
8 * The two constructors are identical except for the type of argument 'message' 8 * The two constructors are identical except for the type of argument 'message'
9 * They rely on overloads of the Message constructor 9 * They rely on overloads of the Message constructor
10 */ 10 */
11 Installer_Message_Box::Installer_Message_Box( 11 InstallerMessageBox::InstallerMessageBox(
12 std::wstring message, 12 std::wstring message,
13 box_type box, 13 box_type box,
14 buttonset_type buttonset, 14 buttonset_type buttonset,
15 default_button_type default_button, 15 default_button_type default_button,
16 icon_type icon 16 icon_type icon
17 ) 17 )
18 : Message( message, INSTALLMESSAGE( box | buttonset | default_button | icon ) ) 18 : Message( message, INSTALLMESSAGE( box | buttonset | default_button | icon ) )
19 {} 19 {}
20 20
21 Installer_Message_Box::Installer_Message_Box( 21 InstallerMessageBox::InstallerMessageBox(
22 std::string message, 22 std::string message,
23 box_type box, 23 box_type box,
24 buttonset_type buttonset, 24 buttonset_type buttonset,
25 default_button_type default_button, 25 default_button_type default_button,
26 icon_type icon 26 icon_type icon
27 ) 27 )
28 : Message( message, INSTALLMESSAGE( box | buttonset | default_button | icon ) ) 28 : Message( message, INSTALLMESSAGE( box | buttonset | default_button | icon ) )
29 {} 29 {}
OLDNEW

Powered by Google App Engine
This is Rietveld