]> git.lyx.org Git - lyx.git/blobdiff - src/support/tests/dummy_functions.cpp
Remove non-copyable idioms
[lyx.git] / src / support / tests / dummy_functions.cpp
index 63f16db092a82414f7afbcdb5b6fcda02c4e60bd..5a99081b77d3366365659d933003419d38e0f309 100644 (file)
@@ -8,11 +8,14 @@ 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) {}
 
-       docstring const _(string const & s) { return from_ascii(s); }
-
        // Dummy language support
        Messages const & getGuiMessages()
        {
@@ -26,4 +29,10 @@ namespace lyx {
 
                return lyx_messages;
        }
+
+       string alignmentToCSS(LyXAlignment)
+       {
+               return string();
+       }
+
 }