@@ -1140,7 +1140,7 @@ void ComparedPair::setStatus()
1140
1140
{
1141
1141
if (!options.findUniqueMode && options.detectMoves )
1142
1142
{
1143
- static constexpr TCHAR detectMovesStr[] = TEXT (" Detect Moves , " );
1143
+ static constexpr TCHAR detectMovesStr[] = TEXT (" Detect Moves | " );
1144
1144
1145
1145
_tcscpy_s (info + infoCurrentPos, _countof (info) - infoCurrentPos, detectMovesStr);
1146
1146
infoCurrentPos += _countof (detectMovesStr) - 1 ;
@@ -1149,7 +1149,7 @@ void ComparedPair::setStatus()
1149
1149
if (options.ignoreEmptyLines || options.ignoreAllSpaces || options.ignoreChangedSpaces ||
1150
1150
options.ignoreCase || options.ignoreRegex )
1151
1151
{
1152
- const int len = _sntprintf_s (buf, _countof (buf), _TRUNCATE, TEXT (" Ignore:%s%s%s%s" ),
1152
+ const int len = _sntprintf_s (buf, _countof (buf), _TRUNCATE, TEXT (" Ignore :%s%s%s%s" ),
1153
1153
options.ignoreEmptyLines ? TEXT (" Empty Lines ," ) : TEXT (" " ),
1154
1154
options.ignoreAllSpaces ? TEXT (" All Spaces ," ) : options.ignoreChangedSpaces
1155
1155
? TEXT (" Changed Spaces ," ) : TEXT (" " ),
@@ -3163,7 +3163,7 @@ void ActiveCompareSummary()
3163
3163
if (cmpPair->options .ignoreEmptyLines || cmpPair->options .ignoreAllSpaces ||
3164
3164
cmpPair->options .ignoreChangedSpaces || cmpPair->options .ignoreCase || cmpPair->options .ignoreRegex )
3165
3165
{
3166
- const int len = _sntprintf_s (buf, _countof (buf), _TRUNCATE, TEXT (" Ignore:%s%s%s%s" ),
3166
+ const int len = _sntprintf_s (buf, _countof (buf), _TRUNCATE, TEXT (" Ignore :%s%s%s%s" ),
3167
3167
cmpPair->options .ignoreEmptyLines ? TEXT (" Empty Lines ," ) : TEXT (" " ),
3168
3168
cmpPair->options .ignoreAllSpaces ? TEXT (" All Spaces ," ) : cmpPair->options .ignoreChangedSpaces
3169
3169
? TEXT (" Changed Spaces ," ) : TEXT (" " ),
0 commit comments