FULLPIPE: Further renames in AniHandler class

This commit is contained in:
Eugene Sandulenko 2016-08-14 21:24:51 +02:00
parent 68828123da
commit 1bcec8bcd9
6 changed files with 67 additions and 67 deletions

View file

@ -457,7 +457,7 @@ void MessageQueue::deleteExCommandByIndex(uint idx, bool doFree) {
_exCommands.erase(it);
}
void MessageQueue::transferExCommands(MessageQueue *mq) {
void MessageQueue::mergeQueue(MessageQueue *mq) { // Original belongs to AniHandler
while (mq->_exCommands.size()) {
_exCommands.push_back(mq->_exCommands.front());
mq->_exCommands.pop_front();