diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2017-02-14 01:25:47 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2017-02-14 01:01:58 +0000 |
commit | 4f4edde01364881be483eca9449a32a14093250f (patch) | |
tree | 9f51681bd037324c768ce3f35bc8b27ffb440c87 /writerperfect | |
parent | 33dbfed46d95720c26699e0289ecacd87cd6e0a7 (diff) |
more windows build fixes
Change-Id: I57b361dea1ee6a5bfdc95ec3632bb42a5941b900
Reviewed-on: https://gerrit.libreoffice.org/34232
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Diffstat (limited to 'writerperfect')
-rw-r--r-- | writerperfect/qa/unit/wpftimport.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/writerperfect/qa/unit/wpftimport.cxx b/writerperfect/qa/unit/wpftimport.cxx index 27b566c37df2..427cb2c294d6 100644 --- a/writerperfect/qa/unit/wpftimport.cxx +++ b/writerperfect/qa/unit/wpftimport.cxx @@ -19,7 +19,7 @@ css::uno::Reference<css::io::XInputStream> createDummyInput() { - rtl::Reference<comphelper::SequenceInputStream> xDummyInput{new comphelper::SequenceInputStream({})}; + rtl::Reference<comphelper::SequenceInputStream> xDummyInput(new comphelper::SequenceInputStream(css::uno::Sequence<sal_Int8>())); return xDummyInput.get(); } |