Merge lp:~lann/ubuntu/lucid/tsclient/fix-for-183076 into lp:ubuntu/lucid/tsclient

Proposed by lann
Status: Needs review
Proposed branch: lp:~lann/ubuntu/lucid/tsclient/fix-for-183076
Merge into: lp:ubuntu/lucid/tsclient
Diff against target: 25 lines (+6/-1)
2 files modified
debian/changelog (+5/-0)
src/rdpfile.c (+1/-1)
To merge this branch: bzr merge lp:~lann/ubuntu/lucid/tsclient/fix-for-183076
Reviewer Review Type Date Requested Status
Jamie Strandboge Needs Information
Review via email: mp+81389@code.launchpad.net

Description of the change

Fix Bug "enable bitmap caching" option in tsclient doesn't work properly (LP: #183076)

To post a comment you must log in.
Revision history for this message
Jamie Strandboge (jdstrand) wrote :

While the patch is certainly small, I don't see an attribution or upstream references in the patch. Is this acceptable upstream? Is this already included upstream? Where is the commit?

If this is not fixed upstream, it would make sense for this to be pushed to 12.04 and then backported in an SRU.

review: Needs Information

Unmerged revisions

25. By lann <lann@lann-desktop>

Fix Bug "enable bitmap caching" option in tsclient doesn't work properly (LP: #183076)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'debian/changelog'
2--- debian/changelog 2010-02-08 22:10:24 +0000
3+++ debian/changelog 2011-11-06 09:20:30 +0000
4@@ -1,3 +1,8 @@
5+tsclient (0.150-3ubuntu2) lucid; urgency=low
6+
7+ * Fix Bug "enable bitmap caching" option in tsclient doesn't work properly (LP: #183076)
8+ -- lann <lann@worldonline.fr> Sat, 05 Nov 2011 23:58:31 +0100
9+
10 tsclient (0.150-3ubuntu1) lucid; urgency=low
11
12 * Merge from debian testing, remaining changes:
13
14=== modified file 'src/rdpfile.c'
15--- src/rdpfile.c 2007-11-07 23:24:42 +0000
16+++ src/rdpfile.c 2011-11-06 09:20:30 +0000
17@@ -702,7 +702,7 @@
18
19
20 widget = lookup_widget (main_window, "chkBitmapCache");
21- if (!gtk_toggle_button_get_active ((GtkToggleButton*)widget))
22+ if (gtk_toggle_button_get_active ((GtkToggleButton*)widget))
23 rdp->bitmapcachepersistenable = 1;
24 else
25 rdp->bitmapcachepersistenable = 0;

Subscribers

People subscribed via source and target branches

to all changes: