1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-16 18:19:55 +00:00

fixed hints getting mixed up with message text

This commit is contained in:
Marc Zinnschlag 2015-03-27 18:55:48 +01:00
parent 23cf859fee
commit 705ee67265

View file

@ -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());
}