Kaydet (Commit) f1eed6b3 authored tarafından Noel Grandin's avatar Noel Grandin

more windows fix after my OUString changes

MSVC having trouble with the OUString const-char-* overloads and
the ternary operator.

Change-Id: Iae88dfe26288b1b6d059b8166349686280f97348
üst 7bd1e6bb
...@@ -559,9 +559,9 @@ SfxNewFileDialog_Impl::SfxNewFileDialog_Impl( ...@@ -559,9 +559,9 @@ SfxNewFileDialog_Impl::SfxNewFileDialog_Impl(
SfxNewFileDialog_Impl::~SfxNewFileDialog_Impl() SfxNewFileDialog_Impl::~SfxNewFileDialog_Impl()
{ {
OUString &rExtra = pAntiImpl->GetExtraData(); OUString &rExtra = pAntiImpl->GetExtraData();
rExtra = MORE_BTN(GetState()) ? "Y" : "N"; rExtra = MORE_BTN(GetState()) ? OUString("Y") : OUString("N");
rExtra += "|"; rExtra += "|";
rExtra += aPreviewBtn.IsChecked() ? "Y" : "N"; rExtra += aPreviewBtn.IsChecked() ? OUString("Y") : OUString("N");
delete pMoreBt; delete pMoreBt;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment