Kaydet (Commit) 87cce82d authored tarafından Julien Nabet's avatar Julien Nabet

cppcheck: fix same expression on both sides

Change-Id: I3de69e2ae186ea1ae8f792588c04b4e799ce1331
üst 5cad3ba0
...@@ -2330,7 +2330,7 @@ sal_Int16 Converter::GetUnitFromString(const OUString& rString, sal_Int16 nDefau ...@@ -2330,7 +2330,7 @@ sal_Int16 Converter::GetUnitFromString(const OUString& rString, sal_Int16 nDefau
case sal_Unicode('I'): case sal_Unicode('I'):
{ {
if(nPos+1 < nLen && (rString[nPos+1] == 'n' if(nPos+1 < nLen && (rString[nPos+1] == 'n'
|| rString[nPos+1] == 'n')) || rString[nPos+1] == 'N'))
nRetUnit = MeasureUnit::INCH; nRetUnit = MeasureUnit::INCH;
break; 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