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

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

Issue 29329159: Issue #1185 - Fix formatting in installer-lib and its tests (Closed)
Patch Set: Created Oct. 15, 2015, 7:03 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
« no previous file with comments | « installer/src/installer-lib/interaction.h ('k') | installer/src/installer-lib/process.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 InstallerMessageBox::InstallerMessageBox( 11 InstallerMessageBox::InstallerMessageBox(
12 std::wstring message, 12 std::wstring message,
13 Box box, 13 Box box,
14 ButtonSet buttonSet, 14 ButtonSet buttonSet,
15 DefaultButton defaultButton, 15 DefaultButton defaultButton,
16 Icon icon 16 Icon icon
17 ) 17 )
18 : Message(message, INSTALLMESSAGE(long(box) | long(buttonSet) | long(defaultBu tton) | long(icon))) 18 : Message(message, INSTALLMESSAGE(long(box) | long(buttonSet) | long(defaultBu tton) | long(icon)))
19 {} 19 {}
20 20
21 InstallerMessageBox::InstallerMessageBox( 21 InstallerMessageBox::InstallerMessageBox(
22 std::string message, 22 std::string message,
23 Box box, 23 Box box,
24 ButtonSet buttonSet, 24 ButtonSet buttonSet,
25 DefaultButton defaultButton, 25 DefaultButton defaultButton,
26 Icon icon 26 Icon icon
27 ) 27 )
28 : Message(message, INSTALLMESSAGE(long(box) | long(buttonSet) | long(defaultBu tton) | long(icon))) 28 : Message(message, INSTALLMESSAGE(long(box) | long(buttonSet) | long(defaultBu tton) | long(icon)))
29 {} 29 {}
OLDNEW
« no previous file with comments | « installer/src/installer-lib/interaction.h ('k') | installer/src/installer-lib/process.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld