From cc9e4eaf458578e6b9983aaacf7e79cd3921323e Mon Sep 17 00:00:00 2001 From: ZappoMan Date: Mon, 5 Aug 2013 10:24:52 -0700 Subject: [PATCH] CR feedback --- interface/src/Application.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/interface/src/Application.cpp b/interface/src/Application.cpp index 23500d8f42..06c5e08ed6 100644 --- a/interface/src/Application.cpp +++ b/interface/src/Application.cpp @@ -1734,7 +1734,7 @@ void Application::importVoxels() { // Where we plan to place this int columnNum = 1; int rowNum = 1; - bool tileLocationUnspecified = false; + bool isTileLocationUnspecified = false; // If we're in multi-file mode, then look for tiling specification in the file name if (fileNameStringList.size() > 1) { @@ -1745,7 +1745,7 @@ void Application::importVoxels() { // If the first period, is the extension, then this is not a grid name; if (fileNameString.mid(indexOfFirstPeriod, fileNameString.length() - indexOfFirstPeriod) == extension) { qDebug("not a valid grid name... treat like tile Location Unspecified\n"); - tileLocationUnspecified = true; + isTileLocationUnspecified = true; } else { QString fileCoord = fileNameString.mid(indexOfFirstPeriod + 1, fileNameString.length() - indexOfFirstPeriod - fileTypeNameLength - 1); @@ -1767,13 +1767,13 @@ void Application::importVoxels() { // If there are no "grid sections" in the filename, then we're going to get if (columnNum < 1 || rowNum < 1) { qDebug("not a valid grid name... treat like tile Location Unspecified\n"); - tileLocationUnspecified = true; + isTileLocationUnspecified = true; } } } - if (tileLocationUnspecified) { - qDebug("tileLocationUnspecified... \n"); + if (isTileLocationUnspecified) { + qDebug("tile Location is Unspecified... \n"); columnNum = unspecifiedColumnNum; rowNum = unspecifiedRowNum;