Kaydet (Commit) ec961611 authored tarafından Markus Mohrhard's avatar Markus Mohrhard

correctly create between/not between entries

Change-Id: I99e553e2e729c46d320f796361b0e04508b63e84
üst 7b5ded5e
......@@ -636,14 +636,14 @@ ScFormatEntry* ScCondFrmtEntry::createConditionEntry() const
eMode = SC_COND_NOTEQUAL;
break;
case 6:
aExpr2 = maEdVal1.GetText();
aExpr2 = maEdVal2.GetText();
eMode = SC_COND_BETWEEN;
if(aExpr2.isEmpty())
return NULL;
break;
case 7:
eMode = SC_COND_NOTBETWEEN;
aExpr2 = maEdVal1.GetText();
aExpr2 = maEdVal2.GetText();
if(aExpr2.isEmpty())
return NULL;
break;
......
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