diff options
Diffstat (limited to 'java/src/com/tigervnc/vncviewer')
-rw-r--r-- | java/src/com/tigervnc/vncviewer/CConn.java | 8 | ||||
-rw-r--r-- | java/src/com/tigervnc/vncviewer/DesktopWindow.java | 8 | ||||
-rw-r--r-- | java/src/com/tigervnc/vncviewer/Makefile | 2 |
3 files changed, 9 insertions, 9 deletions
diff --git a/java/src/com/tigervnc/vncviewer/CConn.java b/java/src/com/tigervnc/vncviewer/CConn.java index 636bfacf..87847501 100644 --- a/java/src/com/tigervnc/vncviewer/CConn.java +++ b/java/src/com/tigervnc/vncviewer/CConn.java @@ -942,8 +942,8 @@ public class CConn extends CConnection } clipboardDialog.setSendingEnabled(viewer.sendClipboard.getValue()); - menuKey = (int)(options.menuKey.getSelectedIndex()+0xFFBE); - F8Menu.f8.setLabel("Send F"+(menuKey-Keysyms.F1+1)); + menuKey = (options.menuKey.getSelectedIndex()+0xFFBE); + F8Menu.f8.setText("Send F"+(menuKey-Keysyms.F1+1)); shared = options.shared.isSelected(); setShared(shared); @@ -1185,9 +1185,9 @@ public class CConn extends CConnection if (cp.width != desktop.scaledWidth || cp.height != desktop.scaledHeight) { int sx = (desktop.scaleWidthRatio == 1.00) - ? ev.getX() : (int)Math.floor(ev.getX()/(float)desktop.scaleWidthRatio); + ? ev.getX() : (int)Math.floor(ev.getX()/desktop.scaleWidthRatio); int sy = (desktop.scaleHeightRatio == 1.00) - ? ev.getY() : (int)Math.floor(ev.getY()/(float)desktop.scaleHeightRatio); + ? ev.getY() : (int)Math.floor(ev.getY()/desktop.scaleHeightRatio); ev.translatePoint(sx - ev.getX(), sy - ev.getY()); writer().writePointerEvent(new Point(ev.getX(),ev.getY()), buttonMask); } else { diff --git a/java/src/com/tigervnc/vncviewer/DesktopWindow.java b/java/src/com/tigervnc/vncviewer/DesktopWindow.java index b1457c33..d6704e01 100644 --- a/java/src/com/tigervnc/vncviewer/DesktopWindow.java +++ b/java/src/com/tigervnc/vncviewer/DesktopWindow.java @@ -339,8 +339,8 @@ class DesktopWindow extends JPanel implements } } } - scaleWidthRatio = (float)((float)scaledWidth / (float)cc.cp.width); - scaleHeightRatio = (float)((float)scaledHeight / (float)cc.cp.height); + scaleWidthRatio = (float)scaledWidth / (float)cc.cp.width; + scaleHeightRatio = (float)scaledHeight / (float)cc.cp.height; } synchronized public void paintComponent(Graphics g) { @@ -475,8 +475,8 @@ class DesktopWindow extends JPanel implements cursorVisible = true; if (softCursor != null) return; - int cursorLeft = (int)cursor.hotspot.x; - int cursorTop = (int)cursor.hotspot.y; + int cursorLeft = cursor.hotspot.x; + int cursorTop = cursor.hotspot.y; int cursorRight = cursorLeft + cursor.width(); int cursorBottom = cursorTop + cursor.height(); diff --git a/java/src/com/tigervnc/vncviewer/Makefile b/java/src/com/tigervnc/vncviewer/Makefile index 136899b4..614057b5 100644 --- a/java/src/com/tigervnc/vncviewer/Makefile +++ b/java/src/com/tigervnc/vncviewer/Makefile @@ -4,7 +4,7 @@ CP = cp JC = javac -JCFLAGS = -target 1.5 -classpath ../../../ +JCFLAGS = -target 1.5 -Xlint:all,-serial,-cast -classpath ../../../ JAR = jar ARCHIVE = VncViewer.jar MANIFEST = MANIFEST.MF |