]> git.lyx.org Git - lyx.git/blobdiff - src/support/tests/dummy_functions.cpp
Merge branch 'master' of git.lyx.org:lyx
[lyx.git] / src / support / tests / dummy_functions.cpp
index cb87ee5f471c9af0b952b1de6e263bc69c61c3a8..5a99081b77d3366365659d933003419d38e0f309 100644 (file)
@@ -8,6 +8,11 @@ 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) {}
 
@@ -24,4 +29,10 @@ namespace lyx {
 
                return lyx_messages;
        }
+
+       string alignmentToCSS(LyXAlignment)
+       {
+               return string();
+       }
+
 }