Revision: 4993
          http://tigervnc.svn.sourceforge.net/tigervnc/?rev=4993&view=rev
Author:   ossman_
Date:     2012-09-03 09:45:40 +0000 (Mon, 03 Sep 2012)
Log Message:
-----------
Break some overly long lines.

Modified Paths:
--------------
    trunk/vncviewer/DesktopWindow.cxx

Modified: trunk/vncviewer/DesktopWindow.cxx
===================================================================
--- trunk/vncviewer/DesktopWindow.cxx   2012-09-03 09:43:23 UTC (rev 4992)
+++ trunk/vncviewer/DesktopWindow.cxx   2012-09-03 09:45:40 UTC (rev 4993)
@@ -848,13 +848,19 @@
     my = self->h();
 
   if ((self->viewport->x() < 0) && (mx < EDGE_SCROLL_SIZE))
-    dx = EDGE_SCROLL_SPEED - EDGE_SCROLL_SPEED * mx / EDGE_SCROLL_SIZE;
-  if ((self->viewport->x() + self->viewport->w() > self->w()) && (mx > 
self->w() - EDGE_SCROLL_SIZE))
-    dx = EDGE_SCROLL_SPEED * (self->w() - mx) / EDGE_SCROLL_SIZE - 
EDGE_SCROLL_SPEED;
+    dx = EDGE_SCROLL_SPEED -
+         EDGE_SCROLL_SPEED * mx / EDGE_SCROLL_SIZE;
+  if ((self->viewport->x() + self->viewport->w() > self->w()) &&
+      (mx > self->w() - EDGE_SCROLL_SIZE))
+    dx = EDGE_SCROLL_SPEED * (self->w() - mx) / EDGE_SCROLL_SIZE -
+         EDGE_SCROLL_SPEED;
   if ((self->viewport->y() < 0) && (my < EDGE_SCROLL_SIZE))
-    dy = EDGE_SCROLL_SPEED - EDGE_SCROLL_SPEED * my / EDGE_SCROLL_SIZE;
-  if ((self->viewport->y() + self->viewport->h() > self->h()) && (my > 
self->h() - EDGE_SCROLL_SIZE))
-    dy = EDGE_SCROLL_SPEED * (self->h() - my) / EDGE_SCROLL_SIZE - 
EDGE_SCROLL_SPEED;
+    dy = EDGE_SCROLL_SPEED -
+         EDGE_SCROLL_SPEED * my / EDGE_SCROLL_SIZE;
+  if ((self->viewport->y() + self->viewport->h() > self->h()) &&
+      (my > self->h() - EDGE_SCROLL_SIZE))
+    dy = EDGE_SCROLL_SPEED * (self->h() - my) / EDGE_SCROLL_SIZE -
+         EDGE_SCROLL_SPEED;
 
   if ((dx == 0) && (dy == 0))
     return;

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Tigervnc-commits mailing list
Tigervnc-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tigervnc-commits

Reply via email to