Merge lp:~w-shackleton/ubuntu/natty/x2vnc/x2vnc-fix-726783 into lp:ubuntu/natty/x2vnc

Proposed by Will Shackleton
Status: Merged
Merge reported by: Martin Pitt
Merged at revision: not available
Proposed branch: lp:~w-shackleton/ubuntu/natty/x2vnc/x2vnc-fix-726783
Merge into: lp:ubuntu/natty/x2vnc
Diff against target: 29 lines (+8/-2)
2 files modified
debian/changelog (+6/-0)
x.c (+2/-2)
To merge this branch: bzr merge lp:~w-shackleton/ubuntu/natty/x2vnc/x2vnc-fix-726783
Reviewer Review Type Date Requested Status
Stefan Lesicnik (community) Disapprove
Luke Yelavich (community) Abstain
Ubuntu branches Pending
Review via email: mp+51644@code.launchpad.net

Description of the change

Fixes lp:#726783

To post a comment you must log in.
Revision history for this message
Luke Yelavich (themuso) wrote :

Thanks for your work. As commented in the bug, this has been sent upstream and to Debian. Hopefully the Debian maintainer will release a new package revision with your patch included, we can then sync the package from Debian.

Thanks again.

review: Abstain
Revision history for this message
Stefan Lesicnik (stefanlsd) wrote :

Not needed here anymore. Work adopted in Debian - thanks for the patch!

review: Disapprove
Revision history for this message
Martin Pitt (pitti) wrote :

Package got synced from Debian, closing proposal. Thanks!

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'debian/changelog'
--- debian/changelog 2010-08-05 10:34:21 +0000
+++ debian/changelog 2011-02-28 22:40:48 +0000
@@ -1,3 +1,9 @@
1x2vnc (1.7.2-2ubuntu1) maverick; urgency=low
2
3 * x.c: Fixed xinerama support for certain multiple screen setups. (LP: #726783)
4
5 -- William Shackleton <w.shackleton@gmail.com> Mon, 28 Feb 2011 21:09:32 +0000
6
1x2vnc (1.7.2-2) unstable; urgency=low7x2vnc (1.7.2-2) unstable; urgency=low
28
3 * New maintainer (Closes: #586422).9 * New maintainer (Closes: #586422).
410
=== modified file 'x.c'
--- x.c 2008-03-25 10:45:34 +0000
+++ x.c 2011-02-28 22:40:48 +0000
@@ -848,9 +848,9 @@
848{848{
849 int n,ret=a.x;849 int n,ret=a.x;
850 if(a.y < ret) ret=a.y;850 if(a.y < ret) ret=a.y;
851 n=displayHeight - a.y;851 n=y_offset + displayHeight - a.y;
852 if(n < ret) ret=n;852 if(n < ret) ret=n;
853 n=displayWidth - a.x;853 n=x_offset + displayWidth - a.x;
854 if(n < ret) ret=n;854 if(n < ret) ret=n;
855 return ret;855 return ret;
856}856}

Subscribers

People subscribed via source and target branches