commit caff99419afbdc99dfad37b853ed57c9eb11782e
Author: Pavel Sanda <sa...@lyx.org>
Date:   Fri Nov 1 20:04:43 2024 +0100

    Move header include to cpp.
---
 src/mathed/InsetMathAMSArray.cpp   | 1 +
 src/mathed/InsetMathBoldSymbol.cpp | 1 +
 src/mathed/InsetMathBox.cpp        | 1 +
 src/mathed/InsetMathBrace.cpp      | 1 +
 src/mathed/InsetMathCancel.cpp     | 1 +
 src/mathed/InsetMathCancelto.cpp   | 1 +
 src/mathed/InsetMathCases.cpp      | 1 +
 src/mathed/InsetMathComment.cpp    | 1 +
 src/mathed/InsetMathDelim.cpp      | 1 +
 src/mathed/InsetMathFont.cpp       | 1 +
 src/mathed/InsetMathFrac.cpp       | 1 +
 src/mathed/InsetMathLefteqn.cpp    | 1 +
 src/mathed/InsetMathOverset.cpp    | 1 +
 src/mathed/InsetMathPhantom.cpp    | 1 +
 src/mathed/InsetMathRoot.cpp       | 1 +
 src/mathed/InsetMathSqrt.cpp       | 1 +
 src/mathed/InsetMathStackrel.cpp   | 1 +
 src/mathed/InsetMathUnderset.cpp   | 1 +
 src/mathed/InsetMathXArrow.cpp     | 1 +
 src/mathed/MathData.h              | 1 -
 src/mathed/MathSupport.cpp         | 1 +
 21 files changed, 20 insertions(+), 1 deletion(-)

diff --git a/src/mathed/InsetMathAMSArray.cpp b/src/mathed/InsetMathAMSArray.cpp
index 16009e8a7b..ffd45872d5 100644
--- a/src/mathed/InsetMathAMSArray.cpp
+++ b/src/mathed/InsetMathAMSArray.cpp
@@ -12,6 +12,7 @@
 
 #include "InsetMathAMSArray.h"
 
+#include "Dimension.h"
 #include "LaTeXFeatures.h"
 #include "MathData.h"
 #include "MathStream.h"
diff --git a/src/mathed/InsetMathBoldSymbol.cpp 
b/src/mathed/InsetMathBoldSymbol.cpp
index 4dd1871dc3..cd78ff7a68 100644
--- a/src/mathed/InsetMathBoldSymbol.cpp
+++ b/src/mathed/InsetMathBoldSymbol.cpp
@@ -12,6 +12,7 @@
 
 #include "InsetMathBoldSymbol.h"
 
+#include "Dimension.h"
 #include "MathStream.h"
 #include "MathData.h"
 #include "MetricsInfo.h"
diff --git a/src/mathed/InsetMathBox.cpp b/src/mathed/InsetMathBox.cpp
index abdb2128b4..578370ffd1 100644
--- a/src/mathed/InsetMathBox.cpp
+++ b/src/mathed/InsetMathBox.cpp
@@ -13,6 +13,7 @@
 
 #include "InsetMathBox.h"
 
+#include "Dimension.h"
 #include "LaTeXFeatures.h"
 #include "MathData.h"
 #include "MathStream.h"
diff --git a/src/mathed/InsetMathBrace.cpp b/src/mathed/InsetMathBrace.cpp
index db779563cd..4455c42a17 100644
--- a/src/mathed/InsetMathBrace.cpp
+++ b/src/mathed/InsetMathBrace.cpp
@@ -12,6 +12,7 @@
 
 #include "InsetMathBrace.h"
 
+#include "Dimension.h"
 #include "MathData.h"
 #include "MathStream.h"
 #include "MathSupport.h"
diff --git a/src/mathed/InsetMathCancel.cpp b/src/mathed/InsetMathCancel.cpp
index b060af0b9e..80cf059b16 100644
--- a/src/mathed/InsetMathCancel.cpp
+++ b/src/mathed/InsetMathCancel.cpp
@@ -14,6 +14,7 @@
 
 #include "MathStream.h"
 
+#include "Dimension.h"
 #include "LaTeXFeatures.h"
 #include "MetricsInfo.h"
 
diff --git a/src/mathed/InsetMathCancelto.cpp b/src/mathed/InsetMathCancelto.cpp
index 1a7d38c78f..1c3a0c6b58 100644
--- a/src/mathed/InsetMathCancelto.cpp
+++ b/src/mathed/InsetMathCancelto.cpp
@@ -15,6 +15,7 @@
 #include "MathData.h"
 #include "MathStream.h"
 
+#include "Dimension.h"
 #include "Cursor.h"
 #include "LaTeXFeatures.h"
 #include "MetricsInfo.h"
diff --git a/src/mathed/InsetMathCases.cpp b/src/mathed/InsetMathCases.cpp
index 4332cbff48..5cdb41691f 100644
--- a/src/mathed/InsetMathCases.cpp
+++ b/src/mathed/InsetMathCases.cpp
@@ -13,6 +13,7 @@
 #include "InsetMathCases.h"
 
 #include "Cursor.h"
+#include "Dimension.h"
 #include "FuncRequest.h"
 #include "FuncStatus.h"
 #include "support/gettext.h"
diff --git a/src/mathed/InsetMathComment.cpp b/src/mathed/InsetMathComment.cpp
index 2fdcde369e..b76165dd3e 100644
--- a/src/mathed/InsetMathComment.cpp
+++ b/src/mathed/InsetMathComment.cpp
@@ -18,6 +18,7 @@
 
 #include "frontends/Painter.h"
 
+#include "Dimension.h"
 #include "MetricsInfo.h"
 
 #include <ostream>
diff --git a/src/mathed/InsetMathDelim.cpp b/src/mathed/InsetMathDelim.cpp
index fab72db88d..1612a7b727 100644
--- a/src/mathed/InsetMathDelim.cpp
+++ b/src/mathed/InsetMathDelim.cpp
@@ -19,6 +19,7 @@
 #include "MathSupport.h"
 #include "MetricsInfo.h"
 
+#include "Dimension.h"
 #include "LaTeXFeatures.h"
 
 #include "support/docstring.h"
diff --git a/src/mathed/InsetMathFont.cpp b/src/mathed/InsetMathFont.cpp
index 1e12397c08..120a8cf6da 100644
--- a/src/mathed/InsetMathFont.cpp
+++ b/src/mathed/InsetMathFont.cpp
@@ -12,6 +12,7 @@
 
 #include "InsetMathFont.h"
 
+#include "Dimension.h"
 #include "LaTeXFeatures.h"
 #include "MathData.h"
 #include "MathStream.h"
diff --git a/src/mathed/InsetMathFrac.cpp b/src/mathed/InsetMathFrac.cpp
index b0ff55bc4d..7a04d99a2c 100644
--- a/src/mathed/InsetMathFrac.cpp
+++ b/src/mathed/InsetMathFrac.cpp
@@ -20,6 +20,7 @@
 #include "MathSupport.h"
 
 #include "Cursor.h"
+#include "Dimension.h"
 #include "LaTeXFeatures.h"
 #include "MetricsInfo.h"
 #include "TextPainter.h"
diff --git a/src/mathed/InsetMathLefteqn.cpp b/src/mathed/InsetMathLefteqn.cpp
index c4aa8b1f4f..33ea742f9b 100644
--- a/src/mathed/InsetMathLefteqn.cpp
+++ b/src/mathed/InsetMathLefteqn.cpp
@@ -10,6 +10,7 @@
 
 #include <config.h>
 
+#include "Dimension.h"
 #include "InsetMathLefteqn.h"
 
 #include "support/docstream.h"
diff --git a/src/mathed/InsetMathOverset.cpp b/src/mathed/InsetMathOverset.cpp
index 85f7e50122..e2a2ba4c31 100644
--- a/src/mathed/InsetMathOverset.cpp
+++ b/src/mathed/InsetMathOverset.cpp
@@ -16,6 +16,7 @@
 #include "MathStream.h"
 
 #include "Cursor.h"
+#include "Dimension.h"
 #include "LaTeXFeatures.h"
 #include "MetricsInfo.h"
 
diff --git a/src/mathed/InsetMathPhantom.cpp b/src/mathed/InsetMathPhantom.cpp
index ed9cfd8cc9..3a2170e46b 100644
--- a/src/mathed/InsetMathPhantom.cpp
+++ b/src/mathed/InsetMathPhantom.cpp
@@ -15,6 +15,7 @@
 #include "LaTeXFeatures.h"
 #include "MathStream.h"
 
+#include "Dimension.h"
 #include "MetricsInfo.h"
 
 #include "frontends/Painter.h"
diff --git a/src/mathed/InsetMathRoot.cpp b/src/mathed/InsetMathRoot.cpp
index 3ce50f730f..c426229519 100644
--- a/src/mathed/InsetMathRoot.cpp
+++ b/src/mathed/InsetMathRoot.cpp
@@ -17,6 +17,7 @@
 #include "MathSupport.h"
 
 #include "Cursor.h"
+#include "Dimension.h"
 #include "LaTeXFeatures.h"
 #include "MetricsInfo.h"
 
diff --git a/src/mathed/InsetMathSqrt.cpp b/src/mathed/InsetMathSqrt.cpp
index 7a9db4a99c..77f7a1f3ba 100644
--- a/src/mathed/InsetMathSqrt.cpp
+++ b/src/mathed/InsetMathSqrt.cpp
@@ -17,6 +17,7 @@
 #include "MathStream.h"
 #include "MathSupport.h"
 
+#include "Dimension.h"
 #include "LaTeXFeatures.h"
 #include "MetricsInfo.h"
 #include "TextPainter.h"
diff --git a/src/mathed/InsetMathStackrel.cpp b/src/mathed/InsetMathStackrel.cpp
index 6c3581e501..2f51d7017a 100644
--- a/src/mathed/InsetMathStackrel.cpp
+++ b/src/mathed/InsetMathStackrel.cpp
@@ -16,6 +16,7 @@
 #include "MathStream.h"
 
 #include "Cursor.h"
+#include "Dimension.h"
 #include "LaTeXFeatures.h"
 #include "MetricsInfo.h"
 
diff --git a/src/mathed/InsetMathUnderset.cpp b/src/mathed/InsetMathUnderset.cpp
index f8cf773105..a44430c0c4 100644
--- a/src/mathed/InsetMathUnderset.cpp
+++ b/src/mathed/InsetMathUnderset.cpp
@@ -16,6 +16,7 @@
 #include "MathStream.h"
 
 #include "Cursor.h"
+#include "Dimension.h"
 #include "LaTeXFeatures.h"
 #include "MetricsInfo.h"
 
diff --git a/src/mathed/InsetMathXArrow.cpp b/src/mathed/InsetMathXArrow.cpp
index 692390f959..c20bdb39c5 100644
--- a/src/mathed/InsetMathXArrow.cpp
+++ b/src/mathed/InsetMathXArrow.cpp
@@ -16,6 +16,7 @@
 #include "MathStream.h"
 #include "MathSupport.h"
 
+#include "Dimension.h"
 #include "LaTeXFeatures.h"
 #include "MetricsInfo.h"
 
diff --git a/src/mathed/MathData.h b/src/mathed/MathData.h
index dc04a9bb4c..ca0f08c8cf 100644
--- a/src/mathed/MathData.h
+++ b/src/mathed/MathData.h
@@ -18,7 +18,6 @@
 #include "MathAtom.h"
 #include "MathClass.h"
 
-#include "Dimension.h"
 #include "OutputEnums.h"
 
 #include <cstddef>
diff --git a/src/mathed/MathSupport.cpp b/src/mathed/MathSupport.cpp
index 6987decea8..8cfa1893d2 100644
--- a/src/mathed/MathSupport.cpp
+++ b/src/mathed/MathSupport.cpp
@@ -20,6 +20,7 @@
 #include "MathParser.h"
 #include "MathStream.h"
 
+#include "Dimension.h"
 #include "Encoding.h"
 #include "LaTeXFeatures.h"
 #include "MetricsInfo.h"
-- 
lyx-cvs mailing list
lyx-cvs@lists.lyx.org
https://lists.lyx.org/mailman/listinfo/lyx-cvs

Reply via email to