]> git.lyx.org Git - lyx.git/blobdiff - src/tests/dummy_functions.cpp
Document the export tests and other tests
[lyx.git] / src / tests / dummy_functions.cpp
index 9d4298b5263e617d01a8e156afd880dafbd217fc..2ee622e8e50230d0638f371431fca66487877f10 100644 (file)
@@ -40,14 +40,16 @@ namespace lyx {
        //
 
 
+       namespace frontend {
        class FontMetrics {
                int em() const { return 0; };
        };
+       }
 
        class FontInfo;
 
-       FontMetrics const & theFontMetrics(FontInfo const &) {
-               static FontMetrics dummy;
+       frontend::FontMetrics const & theFontMetrics(FontInfo const &) {
+               static frontend::FontMetrics dummy;
                return dummy;
        }