| 40 | #include <ktexteditor/cursor.h> |
| 41 | |
| 42 | Q_DECL_COLD_FUNCTION static void gitNotFoundMessage() |
| 43 | { |
| 44 | Utils::showMessage(i18n("<b>git</b> not found. Git is needed to diff the documents. If git is already installed, make sure it is your PATH variable. See " |
| 45 | "https://git-scm.com/downloads"), |
| 46 | gitIcon(), |
| 47 | i18n("Diff"), |
| 48 | MessageType::Error); |
| 49 | } |
| 50 | |
| 51 | DiffWidget *DiffWidgetManager::existingDiffWidgetForParams(KTextEditor::MainWindow *mw, const DiffParams &p) |
| 52 | { |
no test coverage detected