Browse Source

Compare Files extensions (obsoletes File Compare custom command)

Source commit: 26a819d3f0a59f1838bb3d5968b4701283141bc2
Martin Prikryl 7 years ago
parent
commit
3b35d11513
3 changed files with 0 additions and 4 deletions
  1. 0 1
      source/resource/TextsWin.h
  2. 0 1
      source/resource/TextsWin1.rc
  3. 0 2
      source/windows/WinConfiguration.cpp

+ 0 - 1
source/resource/TextsWin.h

@@ -181,7 +181,6 @@
 #define CUSTOM_COMMAND_TAR_ARCHIVE 1467
 #define CUSTOM_COMMAND_UNTAR    1468
 #define CUSTOM_COMMAND_UNTAR_DIRECTORY 1469
-#define CUSTOM_COMMAND_FC       1470
 #define CUSTOM_COMMAND_GREP     1471
 #define CUSTOM_COMMAND_GREP_PATTERN 1472
 #define DIRECTORY_READING_PROGRESS 1473

+ 0 - 1
source/resource/TextsWin1.rc

@@ -187,7 +187,6 @@ BEGIN
         CUSTOM_COMMAND_TAR_ARCHIVE, "&Archive Name:"
         CUSTOM_COMMAND_UNTAR, "&UnTar/GZip..."
         CUSTOM_COMMAND_UNTAR_DIRECTORY, "&Extract to directory:"
-        CUSTOM_COMMAND_FC, "&File Compare"
         CUSTOM_COMMAND_GREP, "&Grep..."
         CUSTOM_COMMAND_GREP_PATTERN, "&Search for pattern:"
         DIRECTORY_READING_PROGRESS, "%d Reading directory"

+ 0 - 2
source/windows/WinConfiguration.cpp

@@ -731,8 +731,6 @@ void __fastcall TWinConfiguration::DefaultLocalized()
     FCustomCommandList->Add(LoadStr(CUSTOM_COMMAND_GREP),
       FORMAT(L"grep \"!?%s?!\" !&", (LoadStr(CUSTOM_COMMAND_GREP_PATTERN))),
       ccShowResults);
-    FCustomCommandList->Add(LoadStr(CUSTOM_COMMAND_FC),
-      L"cmd /c fc \"!\" \"\!^!\" | more && pause", ccLocal);
     FCustomCommandList->Add(LoadStr(CUSTOM_COMMAND_PRINT), L"notepad.exe /p \"!\"", ccLocal);
     FCustomCommandList->Reset();
     FCustomCommandsDefaults = true;