diff options
author | Thorbjørn Lindeijer <thorbjorn@lindeijer.nl> | 2010-02-25 22:52:54 +0100 |
---|---|---|
committer | Thorbjørn Lindeijer <thorbjorn@lindeijer.nl> | 2010-02-25 23:18:36 +0100 |
commit | 01152e00c2099e4f3d2029413718b48d501b153c (patch) | |
tree | 3a90bddd4245cb8e160605c260fb6fd9ddc61ddb | |
parent | d1f7e4f5090ac61142415edaa51f2af86aecc188 (diff) | |
download | mana-client-01152e00c2099e4f3d2029413718b48d501b153c.tar.gz mana-client-01152e00c2099e4f3d2029413718b48d501b153c.tar.bz2 mana-client-01152e00c2099e4f3d2029413718b48d501b153c.tar.xz mana-client-01152e00c2099e4f3d2029413718b48d501b153c.zip |
Fix the X11 paste code to actually return true on success
Reviewed-by: Jared Adams
-rw-r--r-- | src/utils/copynpaste.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/utils/copynpaste.cpp b/src/utils/copynpaste.cpp index 9292fb0b..31aa7bf9 100644 --- a/src/utils/copynpaste.cpp +++ b/src/utils/copynpaste.cpp @@ -308,6 +308,8 @@ bool RetrieveBuffer(std::string& text, std::string::size_type& pos) text.insert(pos, data); pos += strlen(data); XFree(data); + + return true; } } return false; |