Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 383094 Details for
Bug 520208
x11-misc/synergy - copy and paste fail with EFL applications
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
patch against 1.5.0
synergy-efl.patch (text/plain), 858 bytes, created by
Tomáš Čech
on 2014-08-18 20:06:00 UTC
(
hide
)
Description:
patch against 1.5.0
Filename:
MIME Type:
Creator:
Tomáš Čech
Created:
2014-08-18 20:06:00 UTC
Size:
858 bytes
patch
obsolete
>Index: synergy-1.5.0-Source/src/lib/platform/XWindowsClipboard.cpp >=================================================================== >--- synergy-1.5.0-Source.orig/src/lib/platform/XWindowsClipboard.cpp >+++ synergy-1.5.0-Source/src/lib/platform/XWindowsClipboard.cpp >@@ -937,8 +937,14 @@ CXWindowsClipboard::pushReplies() > for (CReplyMap::iterator index = m_replies.begin(); > index != m_replies.end(); ) { > assert(!index->second.empty()); >- if (!index->second.front()->m_replied) { >- pushReplies(index, index->second, index->second.begin()); >+ CReplyList::iterator listit = index->second.begin(); >+ while (listit != index->second.end()) { >+ if (!(*listit)->m_replied) >+ break; >+ ++listit; >+ } >+ if (listit != index->second.end() && !(*listit)->m_replied) { >+ pushReplies(index, index->second, listit); > } > else { > ++index;
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 520208
:
383090
| 383094