From: Jean-Marc Lasgouttes Date: Mon, 8 Jan 2018 10:20:06 +0000 (+0100) Subject: Looks like these are not needed for tests in support/ X-Git-Tag: lyx-2.4.0dev-acb2ca7b~4055 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=4f21f788b468d62bb435a3f62aa3fc65becc7780;p=features.git Looks like these are not needed for tests in support/ --- diff --git a/src/support/tests/dummy_functions.cpp b/src/support/tests/dummy_functions.cpp index e95ea56235..7ae711312a 100644 --- a/src/support/tests/dummy_functions.cpp +++ b/src/support/tests/dummy_functions.cpp @@ -1,6 +1,5 @@ #include -#include "Format.h" #include "support/Messages.h" using namespace std; @@ -12,11 +11,6 @@ namespace lyx { // Dummy LyXRC support class LyXRC { string icon_set; } lyxrc; - // Dummy LyXAlignment support - enum LyXAlignment { - DUMMY - }; - // Keep the linker happy on Windows void lyx_exit(int) {} @@ -34,16 +28,4 @@ namespace lyx { return lyx_messages; } - // Dummy formats support (needed by Lexer) - Formats & theFormats() - { - static Formats dummy_formats; - return dummy_formats; - } - - string alignmentToCSS(LyXAlignment) - { - return string(); - } - } // namespace lyx