summaryrefslogtreecommitdiff
path: root/sw/source/filter/ww8/docxattributeoutput.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/filter/ww8/docxattributeoutput.cxx')
-rw-r--r--sw/source/filter/ww8/docxattributeoutput.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/filter/ww8/docxattributeoutput.cxx b/sw/source/filter/ww8/docxattributeoutput.cxx
index 8e3a43551b3f..7539c9b1f557 100644
--- a/sw/source/filter/ww8/docxattributeoutput.cxx
+++ b/sw/source/filter/ww8/docxattributeoutput.cxx
@@ -1542,11 +1542,11 @@ void lclProcessRecursiveGrabBag(sal_Int32 aElementId, const css::uno::Sequence<c
uno::Any aAny = aAttributes[j].Value;
OString aValue;
- if(aAny.getValueType() == getCppuType<sal_Int32>())
+ if(aAny.getValueType() == cppu::UnoType<sal_Int32>::get())
{
aValue = OString::number(aAny.get<sal_Int32>());
}
- else if(aAny.getValueType() == getCppuType<OUString>())
+ else if(aAny.getValueType() == cppu::UnoType<OUString>::get())
{
aValue = OUStringToOString(aAny.get<OUString>(), RTL_TEXTENCODING_ASCII_US);
}