Kaydet (Commit) daca24d2 authored tarafından Caolán McNamara's avatar Caolán McNamara

cppcheck: I wanted to check for 'e' and 'E' here for 'end'

Change-Id: Ie5a1da69c1282c518ec33835fefe723b0fdf3a40
üst 65b241eb
......@@ -1911,7 +1911,7 @@ void VclBuilder::applyPackingProperty(Window *pCurrent,
}
else if (sKey == "pack-type")
{
VclPackType ePackType = (sValue[0] == 'e' || sValue[0] == 'e') ? VCL_PACK_END : VCL_PACK_START;
VclPackType ePackType = (sValue[0] == 'e' || sValue[0] == 'E') ? VCL_PACK_END : VCL_PACK_START;
pCurrent->set_pack_type(ePackType);
}
else if (sKey == "left-attach")
......
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