|
Lines 937-944
CXWindowsClipboard::pushReplies()
Link Here
|
| 937 |
for (CReplyMap::iterator index = m_replies.begin(); |
937 |
for (CReplyMap::iterator index = m_replies.begin(); |
| 938 |
index != m_replies.end(); ) { |
938 |
index != m_replies.end(); ) { |
| 939 |
assert(!index->second.empty()); |
939 |
assert(!index->second.empty()); |
| 940 |
if (!index->second.front()->m_replied) { |
940 |
CReplyList::iterator listit = index->second.begin(); |
| 941 |
pushReplies(index, index->second, index->second.begin()); |
941 |
while (listit != index->second.end()) { |
|
|
942 |
if (!(*listit)->m_replied) |
| 943 |
break; |
| 944 |
++listit; |
| 945 |
} |
| 946 |
if (listit != index->second.end() && !(*listit)->m_replied) { |
| 947 |
pushReplies(index, index->second, listit); |
| 942 |
} |
948 |
} |
| 943 |
else { |
949 |
else { |
| 944 |
++index; |
950 |
++index; |