aboutsummaryrefslogtreecommitdiffstats
path: root/java/com/tigervnc/vncviewer/DesktopWindow.java
diff options
context:
space:
mode:
authorBrian Hinz <bphinz@users.sourceforge.net>2011-12-04 22:58:48 +0000
committerBrian Hinz <bphinz@users.sourceforge.net>2011-12-04 22:58:48 +0000
commite7f53dc6af093feffe3dbcdc30130ac35bdf0993 (patch)
treef391b896fc98bad09dd11430473e9ed8c1bc8fca /java/com/tigervnc/vncviewer/DesktopWindow.java
parent57e6143f0856fa8708fe37b4b44eefde4ac7848b (diff)
downloadtigervnc-e7f53dc6af093feffe3dbcdc30130ac35bdf0993.tar.gz
tigervnc-e7f53dc6af093feffe3dbcdc30130ac35bdf0993.zip
oops, bad commit! I only meant to commit the changes to the TightDecoder.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4822 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'java/com/tigervnc/vncviewer/DesktopWindow.java')
-rw-r--r--java/com/tigervnc/vncviewer/DesktopWindow.java11
1 files changed, 0 insertions, 11 deletions
diff --git a/java/com/tigervnc/vncviewer/DesktopWindow.java b/java/com/tigervnc/vncviewer/DesktopWindow.java
index 4b9cd195..087b58fd 100644
--- a/java/com/tigervnc/vncviewer/DesktopWindow.java
+++ b/java/com/tigervnc/vncviewer/DesktopWindow.java
@@ -282,17 +282,6 @@ class DesktopWindow extends JPanel implements
showLocalCursor();
}
- final public void imageRect(int x, int y, int w, int h,
- byte[] pix) {
- if (overlapsCursor(x, y, w, h)) hideLocalCursor();
- synchronized (im) {
- im.imageRect(x, y, w, h, pix);
- }
- invalidate(x, y, w, h);
- if (softCursor == null)
- showLocalCursor();
- }
-
final public void copyRect(int x, int y, int w, int h,
int srcX, int srcY) {
if (overlapsCursor(x, y, w, h) || overlapsCursor(srcX, srcY, w, h))