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