summaryrefslogtreecommitdiff
path: root/xmloff/source/draw/ximpshap.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-05-23 15:13:14 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-05-24 06:54:31 +0000
commit2a16ad7e4a2646fb9df447bc0aab195af5ea770f (patch)
tree494e56c7ccf162b227aba6a231c91752b0ece1e9 /xmloff/source/draw/ximpshap.cxx
parent6bda2bf6fe8afba0b47ad89033ea3dbf6dc8b797 (diff)
Convert XMLTextType to scoped enum
Change-Id: Iac147e57784e11d29f2b34e60dc3c624d6090c8b Reviewed-on: https://gerrit.libreoffice.org/25367 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'xmloff/source/draw/ximpshap.cxx')
-rw-r--r--xmloff/source/draw/ximpshap.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmloff/source/draw/ximpshap.cxx b/xmloff/source/draw/ximpshap.cxx
index b3109c915c3f..cde2c15710e4 100644
--- a/xmloff/source/draw/ximpshap.cxx
+++ b/xmloff/source/draw/ximpshap.cxx
@@ -237,7 +237,7 @@ SvXMLImportContext *SdXMLShapeContext::CreateChildContext( sal_uInt16 p_nPrefix,
{
pContext = GetImport().GetTextImport()->CreateTextChildContext(
GetImport(), p_nPrefix, rLocalName, xAttrList,
- ( mbTextBox ? XML_TEXT_TYPE_TEXTBOX : XML_TEXT_TYPE_SHAPE ) );
+ ( mbTextBox ? XMLTextType::TextBox : XMLTextType::Shape ) );
}
}