Kaydet (Commit) 6e3c823f authored tarafından Michael Stahl's avatar Michael Stahl

fdo#80328: sw: fix inverted conditional in AutoCaption dialog

(regression from af2d474f)

Change-Id: Ib22be881c82024e545752715bb9eeb2851a64f88
üst e1cbf05c
......@@ -588,9 +588,9 @@ void SwCaptionOptPage::Reset( const SfxItemSet* rSet)
const SvGlobalName &rOleId = aObjS[i].GetClassName();
OUString sClass;
if (rOleId == SvGlobalName(SO3_OUT_CLASSID))
sClass = aObjS[i].GetHumanName();
else
sClass = m_sOLE;
else
sClass = aObjS[i].GetHumanName();
// don't show product version
sClass = sClass.replaceFirst( sComplete, sWithoutVersion );
m_pCheckLB->InsertEntry( sClass );
......
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