diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-07-18 12:04:13 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-07-18 15:33:56 +0200 |
commit | 0705c05480401fd46349879ad456ae208cb1180b (patch) | |
tree | 89d8e0e752af3659d1987b58676bd2a90a8fea84 /starmath/source/node.cxx | |
parent | 5c997461bfa0bb40189a96f478cb80e5b4d8a1dc (diff) |
make some single-arg constructors in starmath explicit
Change-Id: I4b9a010a2cf42076b02c80732c8e35686482f9e4
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/170684
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'starmath/source/node.cxx')
-rw-r--r-- | starmath/source/node.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/starmath/source/node.cxx b/starmath/source/node.cxx index 49ef500c2059..022596b4e2d2 100644 --- a/starmath/source/node.cxx +++ b/starmath/source/node.cxx @@ -2196,7 +2196,7 @@ void SmSpecialNode::Prepare(const SmFormat &rFormat, const SmDocShell &rDocShell sal_UCS4 cChar = pSym->GetCharacter(); OUString aTmp( &cChar, 1 ); SetText( aTmp ); - GetFont() = pSym->GetFace(&rFormat); + GetFont() = SmFace(pSym->GetFace(&rFormat)); OUString aSymbolSetName = SmLocalizedSymbolData::GetExportSymbolSetName(pSym->GetSymbolSetName()); if (aSymbolSetName == "Greek") |