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

coverity#1371289 Missing move assignment operator

Change-Id: Iabdebb02e91c630aef11e99f4677fd4187df78a5
üst 5f2e1eda
...@@ -1965,7 +1965,7 @@ static bool ImplCutTimePortion( OUStringBuffer& _rStr, sal_Int32 _nSepPos, bool ...@@ -1965,7 +1965,7 @@ static bool ImplCutTimePortion( OUStringBuffer& _rStr, sal_Int32 _nSepPos, bool
OUString sPortion(_rStr.getStr(), _nSepPos ); OUString sPortion(_rStr.getStr(), _nSepPos );
if (_nSepPos < _rStr.getLength()) if (_nSepPos < _rStr.getLength())
_rStr = _rStr.copy(_nSepPos + 1); _rStr.remove(0, _nSepPos + 1);
else else
_rStr.truncate(); _rStr.truncate();
......
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