]> git.lyx.org Git - lyx.git/blobdiff - src/support/tests/dummy_functions.cpp
Update to boost 1.72
[lyx.git] / src / support / tests / dummy_functions.cpp
index 63f16db092a82414f7afbcdb5b6fcda02c4e60bd..b7e27ed70b9299d271d808fa8632cb798a7c9f1e 100644 (file)
@@ -1,18 +1,21 @@
 #include <config.h>
 
-#include "../Messages.h"
+#include "LyXRC.h"
+
+#include "support/Messages.h"
 
 using namespace std;
 
 namespace lyx {
+       // Dummy verbose support
+       bool verbose = false;
+
        // Dummy LyXRC support
-       class LyXRC { string icon_set; } lyxrc;
+       LyXRC lyxrc;
 
        // Keep the linker happy on Windows
        void lyx_exit(int) {}
 
-       docstring const _(string const & s) { return from_ascii(s); }
-
        // Dummy language support
        Messages const & getGuiMessages()
        {
@@ -26,4 +29,5 @@ namespace lyx {
 
                return lyx_messages;
        }
-}
+
+} // namespace lyx