ICU-2691 operator= overload simple mistake

X-SVN-Rev: 10973
This commit is contained in:
Syn Wee Quek 2003-02-05 22:53:13 +00:00
parent 3b7dddebf9
commit 3a74158f41

View file

@ -2192,7 +2192,7 @@ int32_t TestSearch::handlePrev(int32_t start, UErrorCode &status)
TestSearch & TestSearch::operator=(const TestSearch &that)
{
this->SearchIterator::operator=(that);
SearchIterator::operator=(that);
m_offset_ = that.m_offset_;
m_pattern_ = that.m_pattern_;
return *this;