diff options
Diffstat (limited to 'java/com/tigervnc/vncviewer/DesktopWindow.java')
-rw-r--r-- | java/com/tigervnc/vncviewer/DesktopWindow.java | 11 |
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)) |