diff --git a/src/frontends/qt/GuiFontMetrics.cpp b/src/frontends/qt/GuiFontMetrics.cpp index 77e04a1ce2..353a74e523 100644 --- a/src/frontends/qt/GuiFontMetrics.cpp +++ b/src/frontends/qt/GuiFontMetrics.cpp @@ -28,7 +28,12 @@ #include #include #include + +#if QT_VERSION >= 0x050100 #include +#else +#define qDegreesToRadians(degree) (degree * (M_PI / 180)) +#endif using namespace std; using namespace lyx::support; @@ -110,7 +115,6 @@ inline QChar const ucs4_to_qchar(char_type const ucs4) } } // namespace - GuiFontMetrics::GuiFontMetrics(QFont const & font) : font_(font), metrics_(font, 0), strwidth_cache_(cache_metrics_width_size),