summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndras Timar <andras.timar@collabora.com>2019-08-22 15:31:45 +0200
committerAndras Timar <andras.timar@collabora.com>2019-08-23 14:56:04 +0200
commit852eb3a46c1f8ad67c39e88fae399cc39e70fa65 (patch)
tree9670998be812d14a757edffcd0de5e0dfe550a6b
parentBump version to 5.3-66 (diff)
downloadcore-852eb3a46c1f8ad67c39e88fae399cc39e70fa65.tar.gz
core-852eb3a46c1f8ad67c39e88fae399cc39e70fa65.zip
build fix
Change-Id: Ic0be0c6fd0d498b3f0512461480f166ad3f7b5f8
-rw-r--r--filter/source/xsltfilter/OleHandler.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/filter/source/xsltfilter/OleHandler.cxx b/filter/source/xsltfilter/OleHandler.cxx
index 057b69ada620..807a8a04fed1 100644
--- a/filter/source/xsltfilter/OleHandler.cxx
+++ b/filter/source/xsltfilter/OleHandler.cxx
@@ -97,7 +97,7 @@ namespace XSLT
OString SAL_CALL
OleHandler::encodeSubStorage(const OUString& streamName)
{
- if (!m_storage || !m_storage->hasByName(streamName))
+ if (!m_storage.is() || !m_storage->hasByName(streamName))
{
return "Not Found:";// + streamName;
}