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

Unified 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.
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/interaction.h ('k') | installer/src/installer-lib/process.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: installer/src/installer-lib/interaction.cpp
===================================================================
--- a/installer/src/installer-lib/interaction.cpp
+++ b/installer/src/installer-lib/interaction.cpp
@@ -8,22 +8,22 @@
* The two constructors are identical except for the type of argument 'message'
* They rely on overloads of the Message constructor
*/
-InstallerMessageBox::InstallerMessageBox(
- std::wstring message,
+InstallerMessageBox::InstallerMessageBox(
+ std::wstring message,
+ Box box,
+ ButtonSet buttonSet,
+ DefaultButton defaultButton,
+ Icon icon
+)
+ : Message(message, INSTALLMESSAGE(long(box) | long(buttonSet) | long(defaultButton) | long(icon)))
+{}
+
+InstallerMessageBox::InstallerMessageBox(
+ std::string message,
Box box,
- ButtonSet buttonSet,
+ ButtonSet buttonSet,
DefaultButton defaultButton,
Icon icon
- )
+)
: Message(message, INSTALLMESSAGE(long(box) | long(buttonSet) | long(defaultButton) | long(icon)))
{}
-
-InstallerMessageBox::InstallerMessageBox(
- std::string message,
- Box box,
- ButtonSet buttonSet,
- DefaultButton defaultButton,
- Icon icon
- )
- : Message(message, INSTALLMESSAGE(long(box) | long(buttonSet) | long(defaultButton) | long(icon)))
-{}
« 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