Skip to content

Commit 6304082

Browse files
author
Jose Alonso Solis Lemus
committed
small_error
1 parent b854576 commit 6304082

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

CemrgApp/Modules/CemrgAppModule/cmdapps/CemrgProjectionOptions.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ int main(int argc, char* argv[]) {
116116
parser.addArgument( // optional
117117
"measurement-type", "mt", mitkCommandLineParser::Int,
118118
"Measurement type", "Choose between Mean (1), Max (2), Cumulative (3), Mode (4). (Default=2)"
119-
)
119+
);
120120
parser.addArgument( // optional
121121
"single-voxel-projection", "svp", mitkCommandLineParser::Bool,
122122
"Single Voxel Projection", "Project LGE voxels onto Scar Map ONLY ONCE (Default=OFF)");
@@ -302,7 +302,7 @@ int main(int argc, char* argv[]) {
302302
}
303303

304304
QString measurementStr = "";
305-
switch measurement {
305+
switch (measurement) {
306306
case 1: measurementStr = "Mean"; break;
307307
case 2: measurementStr = "Max"; break;
308308
case 3: measurementStr = "Cumulative"; break;

0 commit comments

Comments
 (0)