mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-21 23:09:40 +00:00
Expand dummy_functions.cpp with needed class for check_ExternalTransforms.
This commit is contained in:
parent
73242e0052
commit
27844f580e
@ -35,4 +35,20 @@ namespace lyx {
|
||||
return string();
|
||||
}
|
||||
|
||||
//
|
||||
// Dummy FontMetrics (needed by Length)
|
||||
//
|
||||
|
||||
|
||||
class FontMetrics {
|
||||
int em() const { return 0; };
|
||||
};
|
||||
|
||||
class FontInfo;
|
||||
|
||||
FontMetrics const & theFontMetrics(FontInfo const &) {
|
||||
static FontMetrics dummy;
|
||||
return dummy;
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user