summaryrefslogtreecommitdiff
path: root/starmath/inc
diff options
context:
space:
mode:
authorXisco Fauli <xiscofauli@libreoffice.org>2022-12-02 10:47:55 +0100
committerXisco Fauli <xiscofauli@libreoffice.org>2022-12-02 12:57:29 +0000
commit47d549c015d53b84b4f98c144c1b49378d027a4d (patch)
tree52b4372110e1db060c3c880e13a34a865e849345 /starmath/inc
parent2b093d27b7e6f231512920f20089fcac291b021f (diff)
tdf#151842: starmath_import: Add unittest
Change-Id: Iaae4880324872786f956d112a71c4f0870853f90 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/143568 Tested-by: Jenkins Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
Diffstat (limited to 'starmath/inc')
-rw-r--r--starmath/inc/format.hxx3
-rw-r--r--starmath/inc/utility.hxx3
2 files changed, 4 insertions, 2 deletions
diff --git a/starmath/inc/format.hxx b/starmath/inc/format.hxx
index 61fc8b04764f..23dc04d290cf 100644
--- a/starmath/inc/format.hxx
+++ b/starmath/inc/format.hxx
@@ -19,6 +19,7 @@
#pragma once
+#include "smdllapi.hxx"
#include <svl/hint.hxx>
#include <svl/SfxBroadcaster.hxx>
#include "utility.hxx"
@@ -87,7 +88,7 @@ enum class SmHorAlign {
Right
};
-class SmFormat final : public SfxBroadcaster
+class SM_DLLPUBLIC SmFormat final : public SfxBroadcaster
{
SmFace vFont[FNT_END + 1];
bool bDefaultFont[FNT_END + 1];
diff --git a/starmath/inc/utility.hxx b/starmath/inc/utility.hxx
index a05578a53647..83f3cc124dc1 100644
--- a/starmath/inc/utility.hxx
+++ b/starmath/inc/utility.hxx
@@ -20,6 +20,7 @@
#pragma once
#include <sal/config.h>
+#include "smdllapi.hxx"
#include <comphelper/lok.hxx>
#include <o3tl/unit_conversion.hxx>
@@ -41,7 +42,7 @@ SmViewShell * SmGetActiveView();
bool IsItalic( const vcl::Font &rFont );
bool IsBold( const vcl::Font &rFont );
-class SmFace final : public vcl::Font
+class SM_DLLPUBLIC SmFace final : public vcl::Font
{
tools::Long nBorderWidth;