diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-12-05 11:42:56 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-12-05 11:43:08 +0000 |
commit | e84e15b79cc0541323c01a1040e0cce96bd9032f (patch) | |
tree | 5d890d99550121eb19b4a75fe8657d69ebb6b76c /writerperfect | |
parent | 25cc8979c5e6238bb76c9d751f3fa3433f48542c (diff) |
fix build
Change-Id: I3fa46edfbdb75201e9dc4a615d67124487e2dd20
Diffstat (limited to 'writerperfect')
-rw-r--r-- | writerperfect/source/calc/MSWorksCalcImportFilter.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/writerperfect/source/calc/MSWorksCalcImportFilter.cxx b/writerperfect/source/calc/MSWorksCalcImportFilter.cxx index e46b869cc4cb..cca7fa2800ce 100644 --- a/writerperfect/source/calc/MSWorksCalcImportFilter.cxx +++ b/writerperfect/source/calc/MSWorksCalcImportFilter.cxx @@ -315,9 +315,9 @@ throw (css::uno::RuntimeException, std::exception) const uno::Reference<ucb::XContentAccess> xContentAccess(xResultSet, uno::UNO_QUERY_THROW); const uno::Reference<sdbc::XRow> xRow(xResultSet, uno::UNO_QUERY_THROW); INetURLObject aTmpUrl(sUrl); - sWM3Name = aTmpUrl.getName(INetURLObject::LAST_SEGMENT, true, INetURLObject::DECODE_WITH_CHARSET); + sWM3Name = aTmpUrl.getName(INetURLObject::LAST_SEGMENT, true, INetURLObject::DecodeMechanism::WithCharset); aTmpUrl.setExtension("FM3"); - const rtl::OUString &sTestFM3Name = aTmpUrl.getName(INetURLObject::LAST_SEGMENT, true, INetURLObject::DECODE_WITH_CHARSET); + const rtl::OUString &sTestFM3Name = aTmpUrl.getName(INetURLObject::LAST_SEGMENT, true, INetURLObject::DecodeMechanism::WithCharset); do { const rtl::OUString &aTitle(xRow->getString(1)); |