Kaydet (Commit) 6b9fbc03 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

WaE: assignment within conditional expression

üst 288ce7b4
......@@ -643,6 +643,11 @@ sal_Bool SvxAutoCorrect::FnChgToEnEmDash(
return bRet;
}
#ifdef _MSC_VER
#pragma warning(push)
#pragma warning(disable: 4706) // assignment within conditional expression
#endif
sal_Bool SvxAutoCorrect::FnAddNonBrkSpace(
SvxAutoCorrDoc& rDoc, const String& rTxt,
xub_StrLen, xub_StrLen nEndPos,
......@@ -724,6 +729,10 @@ sal_Bool SvxAutoCorrect::FnAddNonBrkSpace(
return bRet;
}
#ifdef _MSC_VER
#pragma warning(pop)
#endif
sal_Bool SvxAutoCorrect::FnSetINetAttr( SvxAutoCorrDoc& rDoc, const String& rTxt,
xub_StrLen nSttPos, xub_StrLen nEndPos,
LanguageType eLang )
......
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