fixed hints getting mixed up with message text

search
Marc Zinnschlag 10 years ago
parent 23cf859fee
commit 705ee67265

@ -27,7 +27,7 @@ void CSMTools::Search::searchTextCell (const CSMWorld::IdTableBase *model,
message << text.mid (pos).toUtf8().data();
std::ostringstream hint;
message << "r: " << index.column() << " " << pos << " " << search.length();
hint << "r: " << index.column() << " " << pos << " " << search.length();
messages.add (id, message.str(), hint.str());
@ -54,7 +54,7 @@ void CSMTools::Search::searchRegExCell (const CSMWorld::IdTableBase *model,
int length = mRegExp.matchedLength();
std::ostringstream hint;
message << "r: " << index.column() << " " << pos << " " << length;
hint << "r: " << index.column() << " " << pos << " " << length;
messages.add (id, message.str(), hint.str());
@ -79,7 +79,7 @@ void CSMTools::Search::searchRecordStateCell (const CSMWorld::IdTableBase *model
message << id.getId() << " " << states.at (data);
std::ostringstream hint;
message << "r: " << index.column();
hint << "r: " << index.column();
messages.add (id, message.str(), hint.str());
}

Loading…
Cancel
Save