ide/FindInFiles: Fixed mixed up (scary) "Found"/"Replaced" output messages
authorJerome St-Louis <jerome@ecere.com>
Mon, 5 Mar 2012 08:01:57 +0000 (03:01 -0500)
committerJerome St-Louis <jerome@ecere.com>
Mon, 5 Mar 2012 08:01:57 +0000 (03:01 -0500)
ide/src/dialogs/FindInFilesDialog.ec

index 26848a9..ab3d771 100644 (file)
@@ -892,7 +892,7 @@ private:
             if(globalFindCount)
                ide.outputView.findBox.Logf(
                      $"%s search %s a total of %d match%s in %d out of the %d file%s searched\n",
-                     abort ? $"Aborted" : $"Completed", replaceMode ? $"found" : $"replaced", globalFindCount, (globalFindCount > 1) ? $"es" : "",
+                     abort ? $"Aborted" : $"Completed", replaceMode ? $"replaced" : $"found", globalFindCount, (globalFindCount > 1) ? $"es" : "",
                      filesMatchedCount, filesSearchedCount, (filesSearchedCount > 1) ? $"s" : "");
             else if(filesMatchedCount)
                ide.outputView.findBox.Logf(